https://git.reactos.org/?p=reactos.git;a=commitdiff;h=184b8a30cbfba45c1de145...
commit 184b8a30cbfba45c1de145e76eef01245cbf469b Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Thu Apr 7 04:20:53 2022 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Thu Apr 7 04:21:02 2022 +0200
[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