mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 9c5e947e0e
			
		
	
	
		9c5e947e0e
		
	
	
	
	
		
			
			Add a dummy Arch/aarch64/boot.S that for now does nothing but let all processor cores sleep. For now, none of the actual Prekernel code is built for aarch64.
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
| )
 | |
| if ("${SERENITY_ARCH}" STREQUAL "aarch64")
 | |
|     set(SOURCES
 | |
|         ${SOURCES}
 | |
|         Arch/aarch64/boot.S
 | |
|     )
 | |
| else()
 | |
|     set(SOURCES
 | |
|         ${SOURCES}
 | |
|         Arch/x86/boot.S
 | |
|         Arch/x86/multiboot.S
 | |
|         # FIXME: Eventually, some of these should build on aarch64 too.
 | |
|         UBSanitizer.cpp
 | |
|         init.cpp
 | |
|         ../MiniStdLib.cpp
 | |
|         ../../Userland/Libraries/LibELF/Relocation.cpp
 | |
|     )
 | |
| endif()
 | |
| 
 | |
| 
 | |
| if ("${SERENITY_ARCH}" STREQUAL "i686")
 | |
|     set(PREKERNEL_TARGET Prekernel32)
 | |
| elseif ("${SERENITY_ARCH}" STREQUAL "x86_64")
 | |
|     set(PREKERNEL_TARGET Prekernel64)
 | |
| else()
 | |
|     set(PREKERNEL_TARGET Prekernel)
 | |
| endif()
 | |
| 
 | |
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static")
 | |
| 
 | |
| add_executable(${PREKERNEL_TARGET} ${SOURCES})
 | |
| target_compile_options(${PREKERNEL_TARGET} PRIVATE -no-pie -fno-pic)
 | |
| 
 | |
| 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)
 | |
| 
 | |
| if (USE_CLANG_TOOLCHAIN)
 | |
|     target_link_libraries(${PREKERNEL_TARGET} clang_rt.builtins-${SERENITY_CLANG_ARCH} c++abi)
 | |
| else()
 | |
|     target_link_libraries(${PREKERNEL_TARGET} gcc supc++)
 | |
| endif()
 | |
| 
 | |
| if ("${SERENITY_ARCH}" STREQUAL "i686" OR "${SERENITY_ARCH}" STREQUAL "x86_64")
 | |
|     add_custom_command(
 | |
|         TARGET ${PREKERNEL_TARGET} POST_BUILD
 | |
|         COMMAND ${CMAKE_OBJCOPY} -O elf32-i386 ${CMAKE_CURRENT_BINARY_DIR}/${PREKERNEL_TARGET} ${CMAKE_CURRENT_BINARY_DIR}/Prekernel
 | |
|         BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/Prekernel
 | |
|     )
 | |
| endif()
 | |
| 
 | |
| install(FILES "${CMAKE_CURRENT_BINARY_DIR}/Prekernel" 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}")
 |