File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1414from 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
2222parser = ArgumentParser (formatter_class = RawTextHelpFormatter )
2323clone_options = parser .add_mutually_exclusive_group ()
Original file line number Diff line number Diff 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++' ,
You can’t perform that action at this time.
0 commit comments