From 6ba1f0950a43ddce1c394588d7590b6f2540cfff Mon Sep 17 00:00:00 2001 From: inference Date: Thu, 5 Jan 2023 20:55:04 +0000 Subject: [PATCH] Remove Rust tune-cpu flag since it is available only on nightly compiler. --- portage/make.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portage/make.conf b/portage/make.conf index 772c7b7..f382dda 100644 --- a/portage/make.conf +++ b/portage/make.conf @@ -3,7 +3,7 @@ # Copyright 2022-2023 Inference # SPDX-License-Identifier: BSD-3-Clause-Clear -# Version: 5.0.0.28 +# Version: 6.0.0.29 # System @@ -55,7 +55,7 @@ LD_SEC="-Wl,-z,defs -Wl,-z,now -Wl,-pie -Wl,-z,relro -Wl,--strip-all" ## Compiler flags CFLAGS="-march=znver3 -mtune=znver3 -O2 -pipe -flto=thin -U__gnu_linux__ ${C_SEC}" CXXFLAGS="-march=znver3 -mtune=znver3 -O2 -pipe -flto=thin ${C_SEC}" -RUSTFLAGS="-C target-cpu=znver3 -Z tune-cpu=znver3 -C opt-level=2 -C lto -C embed-bitcode=y -C debuginfo=0" +RUSTFLAGS="-C target-cpu=znver3 -C opt-level=2 -C lto -C embed-bitcode=y -C debuginfo=0" ## Linker flags LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind -Wl,--thinlto-jobs=4 ${LD_SEC}" ## USE flags