From f8413273dcd4c41eb96bab564eeb5c88daf3d30e Mon Sep 17 00:00:00 2001 From: Jora Troosh Date: Mon, 22 Jul 2024 16:46:34 +0300 Subject: [PATCH] fix: disable WAFL mode by default --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 467d3ba..88ad636 100644 --- a/build.zig +++ b/build.zig @@ -11,7 +11,7 @@ pub fn build(b: *std.Build) !void { // Custom options const use_z = b.option(bool, "use_z", "Use system zlib") orelse true; const build_nyx = b.option(bool, "build_nyx", "Build Nyx mode on Linux") orelse true; - const enable_wafl = b.option(bool, "enable_wafl", "Enable WAFL mode on WASI") orelse true; + const enable_wafl = b.option(bool, "enable_wafl", "Enable WAFL mode on WASI") orelse false; const build_coresight = b.option(bool, "build_coresight", "Build CoreSight mode on ARM64 Linux") orelse true; const build_unicorn_aarch64 = b.option(bool, "build_unicorn_aarch64", "Build Unicorn mode on ARM64") orelse true; const enable_lto = b.option(bool, "enable_lto", "Enable LTO mode") orelse if (target.result.isDarwin()) false else true;