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
constskip_stage1=b.option(bool, "skip-stage1", "Main test suite skips stage1 compile error tests") orelsefalse;
62
62
constskip_run_translated_c=b.option(bool, "skip-run-translated-c", "Main test suite skips run-translated-c tests") orelsefalse;
63
63
constskip_stage2_tests=b.option(bool, "skip-stage2-tests", "Main test suite skips self-hosted compiler tests") orelsefalse;
64
-
constskip_install_lib_files=b.option(bool, "skip-install-lib-files", "Do not copy lib/ files to installation prefix") orelsefalse;
64
+
constdeprecated_skip_install_lib_files=b.option(bool, "skip-install-lib-files", "deprecated. see no-lib") orelsefalse;
65
+
if (deprecated_skip_install_lib_files) {
66
+
std.log.warn("-Dskip-install-lib-files is deprecated in favor of -Dno-lib", .{});
67
+
}
68
+
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;
consttracy=b.option([]constu8, "tracy", "Enable Tracy integration. Supply path to Tracy source");
125
-
consttracy_callstack=b.option(bool, "tracy-callstack", "Include callstack information with Tracy data. Does nothing if -Dtracy is not provided") orelsefalse;
126
-
consttracy_allocation=b.option(bool, "tracy-allocation", "Include allocation information with Tracy data. Does nothing if -Dtracy is not provided") orelsefalse;
129
+
consttracy_callstack=b.option(bool, "tracy-callstack", "Include callstack information with Tracy data. Does nothing if -Dtracy is not provided") orelse(tracy!=null);
130
+
consttracy_allocation=b.option(bool, "tracy-allocation", "Include allocation information with Tracy data. Does nothing if -Dtracy is not provided") orelse(tracy!=null);
127
131
constforce_gpa=b.option(bool, "force-gpa", "Force the compiler to use GeneralPurposeAllocator") orelsefalse;
128
132
constlink_libc=b.option(bool, "force-link-libc", "Force self-hosted compiler to link libc") orelse (enable_llvmoronly_c);
0 commit comments