remove -C link-arg=-fuse-ld=lld from rustflags

This commit is contained in:
finn 2022-12-19 22:52:12 -08:00
parent a07b894fe7
commit 4a2ee2fd9c

View file

@ -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"