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

Kernel: Don't link against libstdc++

It has nothing we need anymore :^)
This commit is contained in:
Andrew Kaster 2020-05-15 21:33:32 -06:00 committed by Andreas Kling
parent 6d0d848720
commit bde7bc3472

View file

@ -164,7 +164,7 @@ else()
endif() endif()
add_executable(Kernel ${SOURCES}) add_executable(Kernel ${SOURCES})
target_link_libraries(Kernel gcc stdc++) target_link_libraries(Kernel gcc)
add_dependencies(Kernel boot) add_dependencies(Kernel boot)
install(TARGETS Kernel RUNTIME DESTINATION boot) install(TARGETS Kernel RUNTIME DESTINATION boot)