From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 110A21580B9 for ; Sat, 21 Aug 2021 14:18:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3146EE0829; Sat, 21 Aug 2021 14:18:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04B09E0829 for ; Sat, 21 Aug 2021 14:17:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E880340836 for ; Sat, 21 Aug 2021 14:17:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 791355A0 for ; Sat, 21 Aug 2021 14:17:56 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1629555424.d5f1e03220d15cd5875e2577cb56875b6a96e815.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:5.10 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 5010_enable-cpu-optimizations-universal.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: d5f1e03220d15cd5875e2577cb56875b6a96e815 X-VCS-Branch: 5.10 Date: Sat, 21 Aug 2021 14:17:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 37421b35-f26e-4fb8-a36e-1c496b0bbba0 X-Archives-Hash: 841d5aee1442e8c956b08db86aa754e8 commit: d5f1e03220d15cd5875e2577cb56875b6a96e815 Author: Mike Pagano gentoo org> AuthorDate: Sat Aug 21 14:17:04 2021 +0000 Commit: Mike Pagano gentoo org> CommitDate: Sat Aug 21 14:17:04 2021 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=d5f1e032 Update to CPU Optimization patch (USE=experiental) Signed-off-by: Mike Pagano gentoo.org> 5010_enable-cpu-optimizations-universal.patch | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/5010_enable-cpu-optimizations-universal.patch b/5010_enable-cpu-optimizations-universal.patch index c45d13b..e37528f 100644 --- a/5010_enable-cpu-optimizations-universal.patch +++ b/5010_enable-cpu-optimizations-universal.patch @@ -219,7 +219,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MZEN3 + bool "AMD Zen 3" -+ depends on ( CC_IS_GCC && GCC_VERSION >= 100300 ) || ( CC_IS_CLANG && CLANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION >= 100300) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + help + Select this for AMD Family 19h Zen 3 processors. + @@ -378,7 +378,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MCOOPERLAKE + bool "Intel Cooper Lake" -+ depends on ( CC_IS_GCC && GCC_VERSION > 100100 ) || ( CC_IS_CLANG && CLANG_VERSION >= 100000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 100100) || (CC_IS_CLANG && CLANG_VERSION >= 100000) + select X86_P6_NOP + help + @@ -388,7 +388,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MTIGERLAKE + bool "Intel Tiger Lake" -+ depends on ( CC_IS_GCC && GCC_VERSION > 100100 ) || ( CC_IS_CLANG && CLANG_VERSION >= 100000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 100100) || (CC_IS_CLANG && CLANG_VERSION >= 100000) + select X86_P6_NOP + help + @@ -398,7 +398,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MSAPPHIRERAPIDS + bool "Intel Sapphire Rapids" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && CLANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + select X86_P6_NOP + help + @@ -408,7 +408,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MROCKETLAKE + bool "Intel Rocket Lake" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && CLANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + select X86_P6_NOP + help + @@ -418,7 +418,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config MALDERLAKE + bool "Intel Alder Lake" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && CLANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + select X86_P6_NOP + help + @@ -435,7 +435,7 @@ index 814fe0d349b0..8acf6519d279 100644 +config GENERIC_CPU2 + bool "Generic-x86-64-v2" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && LANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + depends on X86_64 + help + Generic x86-64 CPU. @@ -443,7 +443,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config GENERIC_CPU3 + bool "Generic-x86-64-v3" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && LANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + depends on X86_64 + help + Generic x86-64-v3 CPU with v3 instructions. @@ -451,7 +451,7 @@ index 814fe0d349b0..8acf6519d279 100644 + +config GENERIC_CPU4 + bool "Generic-x86-64-v4" -+ depends on ( CC_IS_GCC && GCC_VERSION > 110000 ) || ( CC_IS_CLANG && LANG_VERSION >= 120000 ) ++ depends on (CC_IS_GCC && GCC_VERSION > 110000) || (CC_IS_CLANG && CLANG_VERSION >= 120000) + depends on X86_64 + help + Generic x86-64 CPU with v4 instructions.