The --stack-first link option doesn't exist any more

This commit is contained in:
Frank Denis
2023-02-07 18:38:23 +01:00
parent 8bcb4ddad8
commit ee009287af
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
- script: |
curl -sL -o - https://ziglang.org/download/0.10.1/zig-linux-x86_64-0.10.1.tar.xz | tar xJ -f - -C /opt/
sudo mv /opt/zig-* /opt/zig
env PATH=/opt/zig/bin:/opt/zig:$PATH
export PATH=/opt/zig/bin:/opt/zig:$PATH
displayName: Install the Zig SDK
- script: |
. ~/.wasmer/wasmer.sh
+1 -1
View File
@@ -8,7 +8,7 @@ mkdir -p $PREFIX || exit 1
export CC="zig cc"
export CFLAGS="--target=wasm32-wasi -O3"
export LDFLAGS="-s -Wl,--stack-first"
export LDFLAGS="-s"
export AR="zig ar"
export RANLIB="zig ranlib"