File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 54
54
55
55
ifeq ($(SRCARCH),arm64)
56
56
NO_PERF_REGS := 0
57
+ NO_SYSCALL_TABLE := 0
58
+ CFLAGS += -I$(OUTPUT)arch/arm64/include/generated
57
59
LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
58
60
endif
59
61
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ static const char **syscalltbl_native = syscalltbl_powerpc_64;
38
38
#include <asm/syscalls_32.c>
39
39
const int syscalltbl_native_max_id = SYSCALLTBL_POWERPC_32_MAX_ID ;
40
40
static const char * * syscalltbl_native = syscalltbl_powerpc_32 ;
41
+ #elif defined(__aarch64__ )
42
+ #include <asm/syscalls.c>
43
+ const int syscalltbl_native_max_id = SYSCALLTBL_ARM64_MAX_ID ;
44
+ static const char * * syscalltbl_native = syscalltbl_arm64 ;
41
45
#endif
42
46
43
47
struct syscall {
You can’t perform that action at this time.
0 commit comments