Skip to content

Commit

Permalink
add arch support for arm7l (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbSteveK authored Nov 7, 2023
1 parent d96eb08 commit e93f88d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public String getResourcePath(String cRuntime, String libraryName) {
}
} else if (arch.startsWith("arm64") || arch.startsWith("aarch64")) {
arch = "arm64-v8a";
} else if (arch.equals("armv7l")) {
arch = "armeabi-v7a";
} else {
throw new RuntimeException("AWS CRT: architecture not supported on Android: " + arch);
}
Expand Down

0 comments on commit e93f88d

Please sign in to comment.