Skip to content

Commit 13a56a0

Browse files
committed
Revert "fix(walltime): disable PYTHON_PERF_JIT_SUPPORT on macOS"
This reverts commit f94e5b3.
1 parent 279bd8f commit 13a56a0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/executor/helpers/env.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ pub fn get_base_injected_env(
2424
("PYTHONHASHSEED".into(), "0".into()),
2525
(
2626
"PYTHON_PERF_JIT_SUPPORT".into(),
27-
// FIXME(COD-2645): Keep this disabled on macOS. Enabling it causes
28-
// many unresolved addresses on the stack when profiling with samply.
29-
if mode == RunnerMode::Walltime && !cfg!(target_os = "macos") {
27+
if mode == RunnerMode::Walltime {
3028
"1".into()
3129
} else {
3230
"0".into()

0 commit comments

Comments
 (0)