diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:38:07 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:38:07 +0100 |
commit | 41c3f5deaadb3642d8b4e9a74e395a6109429e23 (patch) | |
tree | d61ae31b2cb84015680e1da2995a289cbdc8403a | |
parent | cc0ea9e813618eb60006d72eda7dc7784712068d (diff) |
compile without libnl
-rwxr-xr-x | precompile.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/precompile.sh b/precompile.sh index 1868b28b..0891a94e 100755 --- a/precompile.sh +++ b/precompile.sh @@ -10,6 +10,7 @@ echo "Building for x86_64" --disable-shared \ --host x86_64-unknown-linux-musl \ --enable-ipv6 + --without-libnl make -j$(nproc) mkdir -p x86_64 @@ -29,6 +30,7 @@ echo "Building for rpi" --disable-shared \ --host aarch64-unknown-linux-musl \ --enable-ipv6 + --without-libnl make -j$(nproc) mkdir -p rpi |