diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-05-12 22:25:20 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-05-12 22:29:21 -0700 |
| commit | 4b59f564344598b4d1f1a51839a4dc5cbf357012 (patch) | |
| tree | ac1567c2e4fdbde343b30150b0fd42e3742e2a08 /src/Compilation.zig | |
| parent | 459c9f05359e3405f39e4c954c62c61a493e49ae (diff) | |
| download | zig-4b59f564344598b4d1f1a51839a4dc5cbf357012.tar.gz zig-4b59f564344598b4d1f1a51839a4dc5cbf357012.zip | |
stage2: build and provide libunwind when compiling for native libc
5ac91794cce8bd53916a378815be01e4365d53d9 made Zig link against the
system libc when targeting the native C ABI. However this made it stop
putting libunwind.a on the linker line when it needed to sometimes,
causing undefined symbols when linking against C++ code.
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 6a9f75acf5..b14e598f71 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3023,7 +3023,6 @@ fn wantBuildLibUnwindFromSource(comp: *Compilation) bool { .Exe => true, }; return comp.bin_file.options.link_libc and is_exe_or_dyn_lib and - comp.bin_file.options.libc_installation == null and target_util.libcNeedsLibUnwind(comp.getTarget()); } |
