diff options
| author | Steven Fackler <sfackler@palantir.com> | 2022-03-17 15:24:48 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-03-17 18:16:24 -0700 |
| commit | 9dc9219b2feb5971ca5e86e0d0880233f28cf18c (patch) | |
| tree | ec27bcf2952da8f6315df72b217e704daa44ec4a /src | |
| parent | ff21cb42a0201501d0bb762c9e496997fbccfdf3 (diff) | |
| download | zig-9dc9219b2feb5971ca5e86e0d0880233f28cf18c.tar.gz zig-9dc9219b2feb5971ca5e86e0d0880233f28cf18c.zip | |
Don't strip by default in cc or c++
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 3f4d124f00..a071ca9a60 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1308,7 +1308,7 @@ fn buildOutputType( .cc, .cpp => { emit_h = .no; soname = .no; - strip = true; + strip = false; ensure_libc_on_non_freestanding = true; ensure_libcpp_on_non_freestanding = arg_mode == .cpp; want_native_include_dirs = true; |
