summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAlexey Gavrilov <alexey.gavrilov@mail.com>2026-03-30 17:50:25 +0700
committerAlexey Gavrilov <alexey.gavrilov@mail.com>2026-03-30 17:50:25 +0700
commite5eb32a5123920d18a55819bcea8a23b3a3e0f4d (patch)
treedfd7935ba4e911ba4354b5f611d841769c264c62 /arch
parent256b2c871a0f3ac0175de298b78c6ea527f42f60 (diff)
Cmake status information output
Reinforce of compiler, C runtime, architecture checks at cmake configuration. Compiler check means continue building at the cmake configure stage only for supported compilers. Use unsupported compiler involves immediate build process stopping. C runtime check means finding of runtime objects. Especially for *crtbegin.o* and *crtend.o* files. Architecture means *ObjectiveProject_ARCHITECTURE* variable is set. That variable configure at toolchain file by default and cannot override if toolchain file is passed. TODO - Image creation - Build under window platform (optional) Signed-off-by: Alexey Gavrilov <alexey.gavrilov@mail.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/CMakeLists.txt b/arch/CMakeLists.txt
index c8719ce..0491df7 100644
--- a/arch/CMakeLists.txt
+++ b/arch/CMakeLists.txt
@@ -14,4 +14,4 @@ target_sources(Initialization
${CMAKE_CURRENT_LIST_DIR}/SecondaryInit.h
)
-add_subdirectory(${ARCH})
+add_subdirectory(${ObjectiveProject_ARCHITECTURE})