@@ -9,12 +9,12 @@ pub fn build(b: *std.Build) !void {
9
9
const version = std.SemanticVersion { .major = 4 , .minor = 21 , .patch = 0 };
10
10
11
11
// Custom options
12
- const use_z = b .option (bool , "use_z " , "Use system zlib" ) orelse true ;
13
- 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 false ;
15
- const build_coresight = b .option (bool , "build_coresight " , "Build CoreSight mode on ARM64 Linux" ) orelse true ;
16
- const build_unicorn_aarch64 = b .option (bool , "build_unicorn_aarch64 " , "Build Unicorn mode on ARM64" ) orelse true ;
17
- const enable_lto = b .option (bool , "enable_lto " , "Enable LTO mode" ) orelse if (target .result .isDarwin ()) false else true ;
12
+ const use_z = b .option (bool , "use-z " , "Use system zlib" ) orelse true ;
13
+ 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 false ;
15
+ const build_coresight = b .option (bool , "build-coresight " , "Build CoreSight mode on ARM64 Linux" ) orelse true ;
16
+ const build_unicorn_aarch64 = b .option (bool , "build-unicorn-aarch64 " , "Build Unicorn mode on ARM64" ) orelse true ;
17
+ const enable_lto = b .option (bool , "enable-lto " , "Enable LTO mode" ) orelse if (target .result .isDarwin ()) false else true ;
18
18
19
19
// Dependencies
20
20
const AFLplusplus_dep = b .dependency ("AFLplusplus" , .{});
0 commit comments