Skip to content

Commit 59d8fab

Browse files
committed
Add atomic to allowed system libraries
1 parent eba3344 commit 59d8fab

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

cpython-unix/build.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,16 @@
5151
EXTENSION_MODULES = SUPPORT / "extension-modules.yml"
5252
TARGETS_CONFIG = SUPPORT / "targets.yml"
5353

54-
LINUX_ALLOW_SYSTEM_LIBRARIES = {"c", "crypt", "dl", "m", "pthread", "rt", "util"}
54+
LINUX_ALLOW_SYSTEM_LIBRARIES = {
55+
"c",
56+
"crypt",
57+
"dl",
58+
"m",
59+
"pthread",
60+
"rt",
61+
"util",
62+
"atomic",
63+
}
5564
MACOS_ALLOW_SYSTEM_LIBRARIES = {"dl", "m", "pthread"}
5665
MACOS_ALLOW_FRAMEWORKS = {"CoreFoundation"}
5766

0 commit comments

Comments
 (0)