We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5260ce2 commit 3f741ecCopy full SHA for 3f741ec
src/main/java/one/profiler/AsyncProfilerLoader.java
@@ -145,7 +145,7 @@ private static String getLibrarySuffix() throws OSNotSupportedException {
145
String arch = System.getProperty("os.arch").toLowerCase();
146
if (os.startsWith("linux")) {
147
if (arch.equals("arm64") || arch.equals("aarch64")) {
148
- librarySuffix = version + "-linux-aarch64.so";
+ librarySuffix = version + "-linux-arm64.so";
149
} else if (arch.equals("x86") && oldVersion) {
150
librarySuffix = version + "-linux-x86.so";
151
} else if (arch.equals("x86_64") || arch.equals("x64") || arch.equals("amd64")) {
0 commit comments