Skip to content

Commit 8572c62

Browse files
authored
Merge pull request #287 from nathanchance/6.13.0-kgr-uprev
2 parents d2c105c + f1f5998 commit 8572c62

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

build-llvm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
from tc_build.tools import HostTools, StageTools
1515

1616
# This is a known good revision of LLVM for building the kernel
17-
GOOD_REVISION = '2ab9233f4f393c240c37ef092de09d907fe5c890'
17+
GOOD_REVISION = '5ce271ef74dd3325993c827f496e460ced41af11'
1818

1919
# The version of the Linux kernel that the script downloads if necessary
20-
DEFAULT_KERNEL_FOR_PGO = (6, 12, 0)
20+
DEFAULT_KERNEL_FOR_PGO = (6, 13, 0)
2121

2222
parser = ArgumentParser(formatter_class=RawTextHelpFormatter)
2323
clone_options = parser.add_mutually_exclusive_group()

tc_build/binutils.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def __init__(self):
1818
self.configure_flags = [
1919
'--disable-compressed-debug-sections',
2020
'--disable-gdb',
21+
'--disable-gprofng',
2122
'--disable-nls',
2223
'--disable-werror',
2324
'--enable-deterministic-archives',
@@ -27,9 +28,6 @@ def __init__(self):
2728
'--quiet',
2829
'--with-system-zlib',
2930
]
30-
# gprofng uses glibc APIs that might not be available on musl
31-
if tc_build.utils.libc_is_musl():
32-
self.configure_flags.append('--disable-gprofng')
3331
self.configure_vars = {
3432
'CC': 'gcc',
3533
'CXX': 'g++',

0 commit comments

Comments
 (0)