Skip to content

Commit

Permalink
examples/c: convert aarch64 to arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
JackyYin authored and anakryiko committed Nov 24, 2021
1 parent 1b9d2a5 commit e563413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ VMLINUX := ../../vmlinux/vmlinux.h
# outdated
INCLUDES := -I$(OUTPUT) -I../../libbpf/include/uapi -I$(dir $(VMLINUX))
CFLAGS := -g -Wall
ARCH := $(shell uname -m | sed 's/x86_64/x86/')
ARCH := $(shell uname -m | sed 's/x86_64/x86/' | sed 's/aarch64/arm64/' | sed 's/ppc64le/powerpc/' | sed 's/mips.*/mips/')

APPS = minimal bootstrap uprobe kprobe fentry

Expand Down

0 comments on commit e563413

Please sign in to comment.