1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

Kernel: Add Syscalls/mmap.cpp to aarch64 build

This commit is contained in:
Timon Kruiper 2023-01-25 16:15:35 +01:00 committed by Linus Groh
parent a146a19636
commit 80b722081b
2 changed files with 8 additions and 2 deletions

View file

@ -292,6 +292,7 @@ set(KERNEL_SOURCES
Syscalls/lseek.cpp
Syscalls/mkdir.cpp
Syscalls/mknod.cpp
Syscalls/mmap.cpp
Syscalls/mount.cpp
Syscalls/open.cpp
Syscalls/perf_event.cpp
@ -401,7 +402,6 @@ if ("${SERENITY_ARCH}" STREQUAL "x86_64")
Syscall.cpp
Syscalls/execve.cpp
Syscalls/fork.cpp
Syscalls/mmap.cpp
Syscalls/sigaction.cpp
)