https://git.reactos.org/?p=reactos.git;a=commitdiff;h=03c8832a777ee04a108c7…
commit 03c8832a777ee04a108c7891ef4575f3500b9f97
Author: Stanislav Motylkov <x86corez(a)gmail.com>
AuthorDate: Wed Apr 27 21:52:05 2022 +0300
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Wed Apr 27 21:52:05 2022 +0300
[BOOT:RTL] Fix GCC configuration problem for ARM platform
Addendum to 24cb57fd. CORE-17604
---
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 754116c5d3a..692727892b0 100644
--- a/boot/rtl/blrtl.cmake
+++ b/boot/rtl/blrtl.cmake
@@ -47,7 +47,8 @@ elseif(ARCH STREQUAL "amd64")
${NTOS_RTL_SOURCE_DIR}/byteswap.c
${NTOS_RTL_SOURCE_DIR}/mem.c)
elseif(ARCH STREQUAL "arm")
- list(APPEND ASM_SOURCE arm/debug_asm.S)
+ list(APPEND ASM_SOURCE
+ ${NTOS_RTL_SOURCE_DIR}/arm/debug_asm.S)
list(APPEND SOURCE
${NTOS_RTL_SOURCE_DIR}/byteswap.c
${NTOS_RTL_SOURCE_DIR}/mem.c)