aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host/host_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/host/host_linux.go')
-rw-r--r--pkg/host/host_linux.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/host/host_linux.go b/pkg/host/host_linux.go
index a01e1bd42..0c65f9b0c 100644
--- a/pkg/host/host_linux.go
+++ b/pkg/host/host_linux.go
@@ -65,6 +65,8 @@ func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, st
re = regexp.MustCompile(` T (__ia32_|__x64_)?sys_([^\n]+)\n`)
case "arm64":
re = regexp.MustCompile(` T (__arm64_)?sys_([^\n]+)\n`)
+ case "ppc64le":
+ re = regexp.MustCompile(` T ()?sys_([^\n]+)\n`)
default:
panic("unsupported arch for kallsyms parsing")
}