File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -493,15 +493,16 @@ def compile_trampolines_for_all_functions():
493
493
494
494
def _is_perf_version_at_least (major , minor ):
495
495
# The output of perf --version looks like "perf version 6.7-3" but
496
- # it can also be perf version "perf version 5.15.143"
496
+ # it can also be perf version "perf version 5.15.143", or even include
497
+ # a commit hash in the version string, like "6.12.9.g242e6068fd5c"
497
498
try :
498
499
output = subprocess .check_output (["perf" , "--version" ], text = True )
499
500
except (subprocess .CalledProcessError , FileNotFoundError ):
500
501
return False
501
502
version = output .split ()[2 ]
502
503
version = version .split ("-" )[0 ]
503
504
version = version .split ("." )
504
- version = tuple (map (int , version ))
505
+ version = tuple (map (int , version [: 2 ] ))
505
506
return version >= (major , minor )
506
507
507
508
You can’t perform that action at this time.
0 commit comments