mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
Support profiler command on arm64. (#1259)
This commit is contained in:
@@ -125,8 +125,10 @@ public class ProfilerCommand extends AnnotatedCommand {
|
||||
}
|
||||
if (OSUtils.isLinux()) {
|
||||
profierSoPath = "async-profiler/libasyncProfiler-linux-x64.so";
|
||||
if (OSUtils.isArm()) {
|
||||
if (OSUtils.isArm32()) {
|
||||
profierSoPath = "async-profiler/libasyncProfiler-linux-arm.so";
|
||||
} else if (OSUtils.isArm64()) {
|
||||
profierSoPath = "async-profiler/libasyncProfiler-linux-aarch64.so";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user