Skip to content

Commit

Permalink
Add atomic to allowed system libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 4, 2024
1 parent eba3344 commit 59d8fab
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion cpython-unix/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,16 @@
EXTENSION_MODULES = SUPPORT / "extension-modules.yml"
TARGETS_CONFIG = SUPPORT / "targets.yml"

LINUX_ALLOW_SYSTEM_LIBRARIES = {"c", "crypt", "dl", "m", "pthread", "rt", "util"}
LINUX_ALLOW_SYSTEM_LIBRARIES = {
"c",
"crypt",
"dl",
"m",
"pthread",
"rt",
"util",
"atomic",
}
MACOS_ALLOW_SYSTEM_LIBRARIES = {"dl", "m", "pthread"}
MACOS_ALLOW_FRAMEWORKS = {"CoreFoundation"}

Expand Down

0 comments on commit 59d8fab

Please sign in to comment.