mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 15:37:00 +00:00
Make defining the kernel entry architecture specific and move it to the architecture domain. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
13 lines
271 B
CMake
13 lines
271 B
CMake
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-xtensa-le)
|
|
|
|
|
|
if(SOC_FAMILY)
|
|
add_subdirectory(soc/${SOC_FAMILY})
|
|
else()
|
|
add_subdirectory(soc/${SOC_PATH})
|
|
endif()
|
|
|
|
set_property(GLOBAL PROPERTY E_KERNEL_ENTRY -e${CONFIG_KERNEL_ENTRY})
|
|
|
|
add_subdirectory(core)
|