diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:46:20 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:46:20 +0100 |
commit | cc073fb4904378e606f907c528b5d8ade604fe19 (patch) | |
tree | 3bb8980d12c061b8b70dade970b3ee64a497d3d9 | |
parent | cf93928ab83a18bd7c82a51a040c3bfcb3fe1dd5 (diff) |
move CC flag to its own line
-rwxr-xr-x | precompile.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/precompile.sh b/precompile.sh index 1209ccfb..d8a92829 100755 --- a/precompile.sh +++ b/precompile.sh @@ -6,7 +6,8 @@ echo "Building for x86_64" -./configure CC=musl-gcc \ +./configure \ + CC=musl-gcc \ --disable-shared \ --host x86_64-unknown-linux-musl \ --enable-ipv6 \ @@ -26,7 +27,8 @@ echo "Built x86_64" echo "Building for rpi" -./configure CC=aarch64-linux-musl-gcc \ +./configure \ + CC=aarch64-linux-musl-gcc \ --disable-shared \ --host aarch64-unknown-linux-musl \ --enable-ipv6 \ |