set(SOURCES ../../AK/StringBuilder.cpp ../../AK/StringUtils.cpp ../../AK/StringView.cpp ../../AK/Format.cpp UBSanitizer.cpp ../Library/MiniStdLib.cpp Assertions.cpp boot.S multiboot.S init.cpp DebugOutput.cpp kmalloc.cpp Runtime.cpp Random.cpp ../../Userland/Libraries/LibELF/Relocation.cpp ) # UBSAN handlers should not get sanitized themselves set_source_files_properties(UBSanitizer.cpp PROPERTIES COMPILE_FLAGS "-fno-sanitize=undefined") if ("${MINERVA_ARCH}" STREQUAL "x86_64") set(SOURCES ${SOURCES} ../Arch/x86_64/DebugOutput.cpp) endif() if ("${MINERVA_ARCH}" STREQUAL "x86_64") set(PREKERNEL_TARGET kernel_x86-64) elseif("${MINERVA_ARCH}" STREQUAL "aarch64") message(SEND_ERROR "Prekernel is not needed on aarch64 and should not be compiled!") endif() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static") add_library(KernelObject OBJECT IMPORTED) set_property(TARGET KernelObject PROPERTY IMPORTED_OBJECTS ${CMAKE_CURRENT_BINARY_DIR}/../Kernel.o ) add_compile_definitions(PREKERNEL) add_executable(${PREKERNEL_TARGET} ${SOURCES} $) add_dependencies(${PREKERNEL_TARGET} Kernel) target_compile_options(${PREKERNEL_TARGET} PRIVATE -no-pie -fno-pic -fno-threadsafe-statics) target_link_options(${PREKERNEL_TARGET} PRIVATE LINKER:-T ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld -nostdlib LINKER:--no-pie) set_target_properties(${PREKERNEL_TARGET} PROPERTIES LINK_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld) target_link_libraries(${PREKERNEL_TARGET} PUBLIC GenericClangPlugin) if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") target_link_libraries(${PREKERNEL_TARGET} PRIVATE gcc) elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang$") target_link_libraries(${PREKERNEL_TARGET} PRIVATE clang_rt.builtins) endif() add_custom_command( TARGET ${PREKERNEL_TARGET} POST_BUILD COMMAND ${CMAKE_OBJCOPY} -O elf32-i386 ${CMAKE_CURRENT_BINARY_DIR}/${PREKERNEL_TARGET} ${CMAKE_CURRENT_BINARY_DIR}/../Kernel ) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/../Kernel" DESTINATION boot) # Remove options which the Prekernel environment doesn't support. get_target_property(PREKERNEL_TARGET_OPTIONS ${PREKERNEL_TARGET} COMPILE_OPTIONS) list(REMOVE_ITEM PREKERNEL_TARGET_OPTIONS "-fsanitize-coverage=trace-pc") list(REMOVE_ITEM PREKERNEL_TARGET_OPTIONS "-fsanitize=kernel-address") set_target_properties(${PREKERNEL_TARGET} PROPERTIES COMPILE_OPTIONS "${PREKERNEL_TARGET_OPTIONS}") if (ENABLE_KERNEL_ADDRESS_SANITIZER) add_compile_definitions(KERNEL_ADDRESS_SANITIZER_ENABLED) endif()