From 8b792363eed29a263c24f1ae5007ca16c9f34f01 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Sun, 14 Jul 2024 20:31:00 -0700 Subject: [PATCH] build-llvm.py: Update DEFAULT_KERNEL_FOR_PGO to 6.10.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 9202ee42..4aaadcbe 100755 --- a/build-llvm.py +++ b/build-llvm.py @@ -17,7 +17,7 @@ GOOD_REVISION = '15397583e3d85eb1f1a051de26eb409aaedd3b54' # The version of the Linux kernel that the script downloads if necessary -DEFAULT_KERNEL_FOR_PGO = (6, 9, 0) +DEFAULT_KERNEL_FOR_PGO = (6, 10, 0) parser = ArgumentParser(formatter_class=RawTextHelpFormatter) clone_options = parser.add_mutually_exclusive_group()