From 4a2ee2fd9c0f75777f8a2afaba18615a45288a8e Mon Sep 17 00:00:00 2001 From: finn Date: Mon, 19 Dec 2022 22:52:12 -0800 Subject: [PATCH] remove -C link-arg=-fuse-ld=lld from rustflags --- rustflags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustflags.sh b/rustflags.sh index 01bcec1..214fe01 100755 --- a/rustflags.sh +++ b/rustflags.sh @@ -1,5 +1,5 @@ #!/bin/bash -flags="-C link-arg=-s -C link-arg=-fuse-ld=lld" +flags="-C link-arg=-s" if [[ "${TARGET}" == *musl ]]; then flags="${flags} -C target-feature=-crt-static"