From 009c9da69773dd04a9e83283cfd4cac48523cec9 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Mon, 8 Jan 2024 16:05:11 -0700 Subject: [PATCH 1/2] build-llvm.py: Update DEFAULT_KERNEL_FOR_PGO to 6.7.0 Signed-off-by: Nathan Chancellor --- build-llvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-llvm.py b/build-llvm.py index 641a5ae1..dc83fc7f 100755 --- a/build-llvm.py +++ b/build-llvm.py @@ -17,7 +17,7 @@ GOOD_REVISION = '0f8615f4dc568f4d7cbf73580eef3e78f64f3bd0' # The version of the Linux kernel that the script downloads if necessary -DEFAULT_KERNEL_FOR_PGO = (6, 6, 0) +DEFAULT_KERNEL_FOR_PGO = (6, 7, 0) parser = ArgumentParser(formatter_class=RawTextHelpFormatter) clone_options = parser.add_mutually_exclusive_group() From 6e0d29a7bff0fdc2fa938a2ab21403cba18a9cc4 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 9 Jan 2024 19:59:23 -0700 Subject: [PATCH 2/2] build-llvm.py: Update GOOD_REVISION to a828cda9c80282a77b579f8fc9dc17a310173af4 This has been qualified on aarch64 and x86_64 hosts using my llvm-kernel-testing repository. Signed-off-by: Nathan Chancellor --- build-llvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-llvm.py b/build-llvm.py index dc83fc7f..be6fba60 100755 --- a/build-llvm.py +++ b/build-llvm.py @@ -14,7 +14,7 @@ from tc_build.tools import HostTools, StageTools # This is a known good revision of LLVM for building the kernel -GOOD_REVISION = '0f8615f4dc568f4d7cbf73580eef3e78f64f3bd0' +GOOD_REVISION = 'a828cda9c80282a77b579f8fc9dc17a310173af4' # The version of the Linux kernel that the script downloads if necessary DEFAULT_KERNEL_FOR_PGO = (6, 7, 0)