Skip to content

Commit 7685ba3

Browse files
ndmitchellfacebook-github-bot
authored andcommitted
Don't depend on jemallocator on Windows
Summary: Hopefully fixes the GitHub CI. Reviewed By: SamChou19815 Differential Revision: D73957437 fbshipit-source-id: eddf42019013c3f2ac5dbff1baef6b511e571de3
1 parent 21975ea commit 7685ba3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyrefly/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@ tempfile = "3.15"
7373
tar = "0.4.44"
7474
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }
7575

76-
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
76+
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
7777
jemallocator = "0.5.4"
78+
79+
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
7880
watchman_client = "0.9.0"
7981
which = "4.2.4"
8082
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }

0 commit comments

Comments
 (0)