cmd = (
"perf",
"record",
+ "--no-buildid",
+ "--no-buildid-cache",
"-g",
"--call-graph=fp",
"-o",
env = None
output_file = cwd + "/perf_output.perf"
if not use_jit:
- base_cmd = ("perf", "record", "-g", "--call-graph=fp", "-o", output_file, "--")
+ base_cmd = (
+ "perf",
+ "record",
+ "--no-buildid",
+ "--no-buildid-cache",
+ "-g",
+ "--call-graph=fp",
+ "-o", output_file,
+ "--"
+ )
else:
base_cmd = (
"perf",
"record",
+ "--no-buildid",
+ "--no-buildid-cache",
"-g",
"--call-graph=dwarf,65528",
"-F99",