From 184b8a30cbfba45c1de145e76eef01245cbf469b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 7 Apr 2022 04:20:53 +0200 Subject: [PATCH] [BOOT:RTL] Fix AMD64 build. Addendum to 24cb57fde. Turns out, that rtl/amd64/rtlmem.S doesn't currently compile fine with ML64, and it wasn't included for compilation anyways in the original RTL. So, just remove it from there as well. --- boot/rtl/blrtl.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boot/rtl/blrtl.cmake b/boot/rtl/blrtl.cmake index 3a51ecb8bc7..754116c5d3a 100644 --- a/boot/rtl/blrtl.cmake +++ b/boot/rtl/blrtl.cmake @@ -40,7 +40,8 @@ if(ARCH STREQUAL "i386") elseif(ARCH STREQUAL "amd64") list(APPEND ASM_SOURCE ${NTOS_RTL_SOURCE_DIR}/amd64/debug_asm.S - ${NTOS_RTL_SOURCE_DIR}/amd64/rtlmem.S) + ## ${NTOS_RTL_SOURCE_DIR}/amd64/rtlmem.S + ) list(APPEND SOURCE ${NTOS_RTL_SOURCE_DIR}/bitmap64.c ${NTOS_RTL_SOURCE_DIR}/byteswap.c