File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 14
14
from tc_build .tools import HostTools , StageTools
15
15
16
16
# This is a known good revision of LLVM for building the kernel
17
- GOOD_REVISION = '2ab9233f4f393c240c37ef092de09d907fe5c890 '
17
+ GOOD_REVISION = '5ce271ef74dd3325993c827f496e460ced41af11 '
18
18
19
19
# 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 )
21
21
22
22
parser = ArgumentParser (formatter_class = RawTextHelpFormatter )
23
23
clone_options = parser .add_mutually_exclusive_group ()
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ def __init__(self):
18
18
self .configure_flags = [
19
19
'--disable-compressed-debug-sections' ,
20
20
'--disable-gdb' ,
21
+ '--disable-gprofng' ,
21
22
'--disable-nls' ,
22
23
'--disable-werror' ,
23
24
'--enable-deterministic-archives' ,
@@ -27,9 +28,6 @@ def __init__(self):
27
28
'--quiet' ,
28
29
'--with-system-zlib' ,
29
30
]
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' )
33
31
self .configure_vars = {
34
32
'CC' : 'gcc' ,
35
33
'CXX' : 'g++' ,
You can’t perform that action at this time.
0 commit comments