mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-27 05:50:51 +00:00
Extraction:
-added native library for aarch64,armhf,armv7 for musl git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@43984 ebf7c1c2-ba36-0410-9fe8-c592906822b4 Former-commit-id: 96370df7203784a52e1645e97f6b381e5b4ce312
This commit is contained in:
parent
6d0b4a40c4
commit
5ca095fffa
Binary file not shown.
Binary file not shown.
@ -331,11 +331,18 @@ public class Multi extends IExtraction {
|
||||
switch (arch) {
|
||||
case ARM:
|
||||
if (is64BitJvm) {
|
||||
if (LibCDetector.isMuslSupported()) {
|
||||
libIDs.add("Linux-aarch64-musl");
|
||||
}
|
||||
// new scheme
|
||||
libIDs.add("Linux-arm64");
|
||||
// old scheme
|
||||
libIDs.add("Linux-aarch64");
|
||||
} else {
|
||||
if (LibCDetector.isMuslSupported()) {
|
||||
libIDs.add("Linux-armhf-musl");
|
||||
libIDs.add("Linux-armv7-musl");
|
||||
}
|
||||
// new scheme
|
||||
libIDs.add("Linux-armv5");
|
||||
if (HardwareType.getHardware() != null && HardwareTypeInterface.ID.QNAP.equals(HardwareType.getHardware().getHardwareType())) {
|
||||
|
Loading…
Reference in New Issue
Block a user