mirror of
https://gitlab.com/signald/libraries/libsignal-client.git
synced 2025-01-08 12:15:38 +00:00
8 lines
143 B
Bash
8 lines
143 B
Bash
|
#!/bin/bash
|
||
|
flags="-C link-arg=-s"
|
||
|
|
||
|
if [[ "${TARGET}" == *musl ]]; then
|
||
|
flags="${flags} -C target-feature=-crt-static"
|
||
|
fi
|
||
|
|
||
|
echo "${flags}"
|