From 151402723265693289e281cd689b6a287d73d283 Mon Sep 17 00:00:00 2001 From: inference Date: Mon, 20 Jun 2022 15:55:25 +0100 Subject: [PATCH] Remove LTO from common flags since Chromium build system uses its own. --- portage/env/chromium.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portage/env/chromium.conf b/portage/env/chromium.conf index a849067..13824ec 100644 --- a/portage/env/chromium.conf +++ b/portage/env/chromium.conf @@ -1,6 +1,6 @@ ## Common flags. -CFLAGS="-march=znver1 -O2 -pipe -flto=full -U__gnu_linux__" -CXXFLAGS="-march=znver1 -O2 -pipe -flto=full" +CFLAGS="-march=znver1 -O2 -pipe -U__gnu_linux__" +CXXFLAGS="-march=znver1 -O2 -pipe" ## Linker flags. LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind"