mirror of
https://gitlab.com/signald/libraries/libsignal-client.git
synced 2024-12-04 19:46:37 +00:00
3779696d1c
Signed-off-by: Kyle Copperfield <kmcopper@danwin1210.de>
8 lines
144 B
Bash
Executable file
8 lines
144 B
Bash
Executable file
#!/bin/bash
|
|
flags="-C link-arg=-s"
|
|
|
|
if [[ "${TARGET}" == *musl ]]; then
|
|
flags="${flags} -C target-feature=-crt-static"
|
|
fi
|
|
|
|
echo "${flags}"
|