From e7bf56fc61e4032a55991bae876ee578c7e6576c Mon Sep 17 00:00:00 2001 From: inference Date: Fri, 16 Sep 2022 18:51:33 +0100 Subject: [PATCH] Change microarchitecture from Zen 1 to Zen 3 due to CPU architecture change. --- 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 57882a3..925fb78 100644 --- a/portage/env/chromium.conf +++ b/portage/env/chromium.conf @@ -1,6 +1,6 @@ ## Compiler flags. -CFLAGS="-march=znver1 -O2 -pipe -U__gnu_linux__" -CXXFLAGS="-march=znver1 -O2 -pipe" +CFLAGS="-march=znver3 -O2 -pipe -U__gnu_linux__" +CXXFLAGS="-march=znver3 -O2 -pipe" ## Linker flags. LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind"