1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

DynamicLoader: Remove obsolete comment

This commit is contained in:
Gunnar Beutner 2021-07-01 11:15:19 +02:00 committed by Andreas Kling
parent 16b9a2d2e1
commit 092ee955aa

View file

@ -12,7 +12,7 @@ if ("${SERENITY_ARCH}" STREQUAL "i686")
file(GLOB LIBC_SOURCES3 "../Libraries/LibC/arch/i386/*.S")
set(ELF_SOURCES ${ELF_SOURCES} ../Libraries/LibELF/Arch/i386/plt_trampoline.S)
elseif ("${SERENITY_ARCH}" STREQUAL "x86_64")
file(GLOB LIBC_SOURCES3 "../Libraries/LibC/arch/x86_64/*.S") # FIXME: this does not exist at this point!
file(GLOB LIBC_SOURCES3 "../Libraries/LibC/arch/x86_64/*.S")
set(ELF_SOURCES ${ELF_SOURCES} ../Libraries/LibELF/Arch/x86_64/plt_trampoline.S)
endif()