You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constuse_zig_libcxx=b.option(bool, "use-zig-libcxx", "If libc++ is needed, use zig's bundled version, don't try to integrate with the system") orelsefalse;
32
32
33
33
consttest_step=b.step("test", "Run all the tests");
34
+
constdeprecated_skip_install_lib_files=b.option(bool, "skip-install-lib-files", "deprecated. see no-lib") orelsefalse;
35
+
if (deprecated_skip_install_lib_files) {
36
+
std.log.warn("-Dskip-install-lib-files is deprecated in favor of -Dno-lib", .{});
37
+
}
38
+
constskip_install_lib_files=b.option(bool, "no-lib", "skip copying of lib/ files and langref to installation prefix. Useful for development") orelsedeprecated_skip_install_lib_files;
constskip_stage1=b.option(bool, "skip-stage1", "Main test suite skips stage1 compile error tests") orelsefalse;
77
84
constskip_run_translated_c=b.option(bool, "skip-run-translated-c", "Main test suite skips run-translated-c tests") orelsefalse;
78
85
constskip_stage2_tests=b.option(bool, "skip-stage2-tests", "Main test suite skips self-hosted compiler tests") orelsefalse;
79
-
constdeprecated_skip_install_lib_files=b.option(bool, "skip-install-lib-files", "deprecated. see no-lib") orelsefalse;
80
-
if (deprecated_skip_install_lib_files) {
81
-
std.log.warn("-Dskip-install-lib-files is deprecated in favor of -Dno-lib", .{});
82
-
}
83
-
constskip_install_lib_files=b.option(bool, "no-lib", "skip copying of lib/ files to installation prefix. Useful for development") orelsedeprecated_skip_install_lib_files;
0 commit comments