1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:37:45 +00:00

Kernel: Make Syscalls/ptrace.cpp buildable for aarch64

This commit is contained in:
Timon Kruiper 2023-01-25 16:12:08 +01:00 committed by Linus Groh
parent cab725cdfb
commit a146a19636
3 changed files with 17 additions and 7 deletions

View file

@ -301,6 +301,7 @@ set(KERNEL_SOURCES
Syscalls/prctl.cpp
Syscalls/process.cpp
Syscalls/profiling.cpp
Syscalls/ptrace.cpp
Syscalls/purge.cpp
Syscalls/read.cpp
Syscalls/readlink.cpp
@ -401,7 +402,6 @@ if ("${SERENITY_ARCH}" STREQUAL "x86_64")
Syscalls/execve.cpp
Syscalls/fork.cpp
Syscalls/mmap.cpp
Syscalls/ptrace.cpp
Syscalls/sigaction.cpp
)