From b19b27a6212d9c2edc748b414859dc85c33d38b6 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Thu, 16 Oct 2025 12:10:00 +0200 Subject: [PATCH] Build relocatable image to allow proper UEFI loading --- boot/xtldr/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/xtldr/CMakeLists.txt b/boot/xtldr/CMakeLists.txt index 5fde2fb..8a64cc3 100644 --- a/boot/xtldr/CMakeLists.txt +++ b/boot/xtldr/CMakeLists.txt @@ -40,7 +40,7 @@ add_executable(xtldr ${XTLDR_SOURCE}) target_link_libraries(xtldr libxtos) # Add linker options -target_link_options(xtldr PRIVATE /ALIGN:512 /DYNAMICBASE:NO /FIXED) +target_link_options(xtldr PRIVATE /ALIGN:512) # Set proper binary name and install target if(ARCH STREQUAL "i686")