Skip to content

Commit 11a803f

Browse files
committed
fix: macos unknown addresses
1 parent 85925cd commit 11a803f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/executor/helpers/env.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ pub fn get_base_injected_env(
2222
};
2323
let mut env = HashMap::from([
2424
("PYTHONHASHSEED".into(), "0".into()),
25+
// IMPORTANT: We must not enable this, otherwise we'll have many unresolved addresses on the stack on MacOS
26+
// TODO: Investigate why this happens
2527
(
2628
"PYTHON_PERF_JIT_SUPPORT".into(),
27-
if mode == RunnerMode::Walltime {
29+
if mode == RunnerMode::Walltime && !cfg!(target_os = "macos") {
2830
"1".into()
2931
} else {
3032
"0".into()

0 commit comments

Comments
 (0)