1
Fork 0

fastbuild: replace -gmlt with -O0

- -gmlt is a noop in zig, because -g is a default anyway.
- -O0 was fixed in ziglang/zig 02ba3cb25cc8ee2637c6fb7bcb935722490ba05c
nix v0.8.1
Motiejus Jakštys 2022-07-01 13:54:03 +03:00
parent 956711690f
commit 527ebbc863
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def _compilation_mode_features(ctx):
actions = actions,
flag_groups = [
flag_group(
flags = ["-gmlt", "-fno-lto", "-Wl,-S"],
flags = ["-fno-lto", "-Wl,-S","-O0"],
),
],
),