Skip to content

Commit 27ccd0b

Browse files
authored
feat: add musllinux riscv64 support (#526)
1 parent 591430d commit 27ccd0b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/auditwheel/policy/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ def _fixup_musl_libc_soname(libc: Libc, arch: str, whitelist):
286286
"s390x": "libc.musl-s390x.so.1",
287287
"ppc64le": "libc.musl-ppc64le.so.1",
288288
"armv7l": "libc.musl-armv7.so.1",
289+
"riscv64": "libc.musl-riscv64.so.1",
289290
}
290291
}
291292
new_whitelist = []

src/auditwheel/policy/musllinux-policy.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
"s390x": {
2222
},
2323
"armv7l": {
24+
},
25+
"riscv64": {
2426
}
2527
},
2628
"lib_whitelist": ["libc.so", "libz.so.1"],
@@ -42,6 +44,8 @@
4244
"s390x": {
4345
},
4446
"armv7l": {
47+
},
48+
"riscv64": {
4549
}
4650
},
4751
"lib_whitelist": ["libc.so", "libz.so.1"],

0 commit comments

Comments
 (0)