Skip to content

Commit f841327

Browse files
committed
fix: disable WAFL mode by default
1 parent 4dd8c21 commit f841327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn build(b: *std.Build) !void {
1111
// Custom options
1212
const use_z = b.option(bool, "use_z", "Use system zlib") orelse true;
1313
const build_nyx = b.option(bool, "build_nyx", "Build Nyx mode on Linux") orelse true;
14-
const enable_wafl = b.option(bool, "enable_wafl", "Enable WAFL mode on WASI") orelse true;
14+
const enable_wafl = b.option(bool, "enable_wafl", "Enable WAFL mode on WASI") orelse false;
1515
const build_coresight = b.option(bool, "build_coresight", "Build CoreSight mode on ARM64 Linux") orelse true;
1616
const build_unicorn_aarch64 = b.option(bool, "build_unicorn_aarch64", "Build Unicorn mode on ARM64") orelse true;
1717
const enable_lto = b.option(bool, "enable_lto", "Enable LTO mode") orelse if (target.result.isDarwin()) false else true;

0 commit comments

Comments
 (0)