Skip to content

Commit 429bb51

Browse files
committed
update
1 parent 029a56a commit 429bb51

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/verify-package.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ jobs:
5252
libcurl4-openssl-dev \
5353
pkg-config \
5454
libsasl2-dev \
55-
protobuf-compiler \
56-
musl-tools
57-
sudo ln -sf /usr/bin/musl-gcc /usr/local/bin/x86_64-linux-musl-gcc
55+
protobuf-compiler
5856
5957
- name: Cache Cargo
6058
uses: Swatinem/rust-cache@v2

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ OS_NAME := $(shell uname -s)
3232
# 2. Configure RUSTFLAGS and target triple per platform
3333
DIST_ROOT := dist
3434
ifeq ($(OS_NAME), Linux)
35-
# Linux: static-link musl for a truly self-contained, zero-dependency binary
36-
TRIPLE := $(ARCH)-unknown-linux-musl
37-
STATIC_FLAGS := -C target-feature=+crt-static
35+
TRIPLE := $(ARCH)-unknown-linux-gnu
36+
STATIC_FLAGS :=
3837
else ifeq ($(OS_NAME), Darwin)
3938
# macOS: strip symbols but keep dynamic linking (Apple system restriction)
4039
TRIPLE := $(ARCH)-apple-darwin

0 commit comments

Comments
 (0)