We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libatomic.so.1
1 parent 59d8fab commit e5b97a9Copy full SHA for e5b97a9
src/validation.rs
@@ -68,6 +68,7 @@ const ELF_ALLOWED_LIBRARIES: &[&str] = &[
68
"libpthread.so.0",
69
"librt.so.1",
70
"libutil.so.1",
71
+ "libatomic.so.1",
72
];
73
74
const PE_ALLOWED_LIBRARIES: &[&str] = &[
@@ -1487,8 +1488,7 @@ fn validate_extension_modules(
1487
1488
wanted.extend(GLOBAL_EXTENSIONS_LINUX_PRE_3_13);
1489
}
1490
- if !is_linux_musl && matches!(python_major_minor, "3.9" | "3.10" | "3.11" | "3.12")
1491
- {
+ if !is_linux_musl && matches!(python_major_minor, "3.9" | "3.10" | "3.11" | "3.12") {
1492
wanted.insert("ossaudiodev");
1493
1494
0 commit comments