| ... | ... | @@ -7948,6 +7948,7 @@ Buf *codegen_generate_builtin_source(CodeGen *g) { |
| 7948 | 7948 | buf_appendf(contents, "pub const have_error_return_tracing = %s;\n", bool_to_str(g->have_err_ret_tracing)); |
| 7949 | 7949 | buf_appendf(contents, "pub const valgrind_support = %s;\n", bool_to_str(want_valgrind_support(g))); |
| 7950 | 7950 | buf_appendf(contents, "pub const position_independent_code = %s;\n", bool_to_str(g->have_pic)); |
| 7951 | buf_appendf(contents, "pub const strip_debug_info = %s;\n", bool_to_str(g->strip_debug_symbols)); |
| 7951 | 7952 | |
| 7952 | 7953 | { |
| 7953 | 7954 | TargetSubsystem detected_subsystem = detect_subsystem(g); |
| ... | ... | @@ -7988,6 +7989,7 @@ static Error define_builtin_compile_vars(CodeGen *g) { |
| 7988 | 7989 | // Only a few things affect builtin.zig |
| 7989 | 7990 | cache_buf(&cache_hash, compiler_id); |
| 7990 | 7991 | cache_int(&cache_hash, g->build_mode); |
| 7992 | cache_bool(&cache_hash, g->strip_debug_symbols); |
| 7991 | 7993 | cache_bool(&cache_hash, g->is_test_build); |
| 7992 | 7994 | cache_bool(&cache_hash, g->is_single_threaded); |
| 7993 | 7995 | cache_int(&cache_hash, g->zig_target->is_native); |