diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-02-03 17:44:31 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-02-03 17:44:31 +0000 |
commit | c44123f79f40edf5fe3d4b0d211d6aa68542abd2 (patch) | |
tree | 838edea4b7f78b425eacf44f29775ffd0bc671e3 /eclass/toolchain.eclass | |
parent | 79e5685b8db7602719212510574962664af2b036 (diff) |
gentoo auto-resync : 03:02:2024 - 17:44:31
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 1679a3d3a366..4cf76229cf88 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1712,7 +1712,7 @@ gcc_do_make() { # The last known issues are with < GCC 4.9 or so, but it's easier # to keep this bound somewhat fresh just to avoid problems. Ultimately, # using not-O0 is just a build-time speed improvement anyway. - if tc-is-gcc && ver_test $(gcc-fullversion) -lt 10 ; then + if ! tc-is-gcc || ver_test $(gcc-fullversion) -lt 10 ; then STAGE1_CFLAGS="-O0" fi |