1

fastbuild: remove -O0

this is the default in zig cc now
This commit is contained in:
Motiejus Jakštys 2022-07-12 14:53:02 +03:00
parent bfa994e2ee
commit 64a7007a23

View File

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