We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e814a9e commit 83799c8Copy full SHA for 83799c8
1 file changed
src/executor/helpers/env.rs
@@ -22,9 +22,11 @@ pub fn get_base_injected_env(
22
};
23
let mut env = HashMap::from([
24
("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
27
(
28
"PYTHON_PERF_JIT_SUPPORT".into(),
- if mode == RunnerMode::Walltime {
29
+ if mode == RunnerMode::Walltime && !cfg!(target_os = "macos") {
30
"1".into()
31
} else {
32
"0".into()
0 commit comments