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

Kernel: Stop building ctype.cpp into the Kernel

Since AK no longer includes ctype.h, we don't have to build ctype.cpp in
the Kernel anymore.
This commit is contained in:
Max Wipfli 2021-07-06 13:48:37 +02:00 committed by Andreas Kling
parent f0fcbb7751
commit 4f29d285dd

View file

@ -335,10 +335,6 @@ set(CRYPTO_SOURCES
../Userland/Libraries/LibCrypto/Hash/SHA2.cpp
)
set(C_SOURCES
../Userland/Libraries/LibC/ctype.cpp
)
set(SOURCES
${KERNEL_SOURCES}
${AK_SOURCES}
@ -346,7 +342,6 @@ set(SOURCES
${VT_SOURCES}
${KEYBOARD_SOURCES}
${CRYPTO_SOURCES}
${C_SOURCES}
)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning-option -Wvla -Wnull-dereference")