| ... | @@ -153,6 +153,7 @@ pub fn buildLibCXX(comp: *Compilation, prog_node: *std.Progress.Node) !void { | ... | @@ -153,6 +153,7 @@ pub fn buildLibCXX(comp: *Compilation, prog_node: *std.Progress.Node) !void { |
| 153 | .root_strip = strip, | 153 | .root_strip = strip, |
| 154 | .link_libc = true, | 154 | .link_libc = true, |
| 155 | .lto = comp.config.lto, | 155 | .lto = comp.config.lto, |
| | 156 | .any_sanitize_thread = comp.config.any_sanitize_thread, |
| 156 | }); | 157 | }); |
| 157 | | 158 | |
| 158 | const root_mod = try Module.create(arena, .{ | 159 | const root_mod = try Module.create(arena, .{ |
| ... | @@ -358,6 +359,7 @@ pub fn buildLibCXXABI(comp: *Compilation, prog_node: *std.Progress.Node) !void { | ... | @@ -358,6 +359,7 @@ pub fn buildLibCXXABI(comp: *Compilation, prog_node: *std.Progress.Node) !void { |
| 358 | .link_libc = true, | 359 | .link_libc = true, |
| 359 | .any_unwind_tables = unwind_tables, | 360 | .any_unwind_tables = unwind_tables, |
| 360 | .lto = comp.config.lto, | 361 | .lto = comp.config.lto, |
| | 362 | .any_sanitize_thread = comp.config.any_sanitize_thread, |
| 361 | }); | 363 | }); |
| 362 | | 364 | |
| 363 | const root_mod = try Module.create(arena, .{ | 365 | const root_mod = try Module.create(arena, .{ |