mirror of
https://gitlab.com/signald/libraries/libsignal-client.git
synced 2024-12-04 19:46:37 +00:00
8 lines
169 B
Bash
Executable file
8 lines
169 B
Bash
Executable file
#!/bin/bash
|
|
flags="-C link-arg=-s -C link-arg=-fuse-ld=lld"
|
|
|
|
if [[ "${TARGET}" == *musl ]]; then
|
|
flags="${flags} -C target-feature=-crt-static"
|
|
fi
|
|
|
|
echo "${flags}"
|