Skip to content

Commit 50cec66

Browse files
committed
fix(fuzz): disable stack probes in static libproven.a for Rust linking
1 parent 0ca6e2a commit 50cec66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.clusterfuzzlite/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mkdir -p "$OUT"
2525
if [[ -f ffi/zig/build.zig ]]; then
2626
pushd ffi/zig >/dev/null
2727
mkdir -p zig-out/lib
28-
zig build-lib -static -O ReleaseSafe -fPIC --name proven \
28+
zig build-lib -static -O ReleaseSafe -fno-stack-check -fPIC --name proven \
2929
-femit-bin=zig-out/lib/libproven.a src/main.zig -lc || {
3030
echo "WARN: standalone Zig FFI build failed; fuzz targets will not link." >&2
3131
exit 1

0 commit comments

Comments
 (0)