a1e838872c
The ARM architecture root directory contains `aarch32.cmake` and `aarch64.cmake` files whose contents are better suited to go into other more purpose-specific files. This commit removes the aforementioned files and moves their contents to other files following the convention used by other architectures. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
12 lines
285 B
CMake
12 lines
285 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_ARM64)
|
|
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf64-littleaarch64)
|
|
|
|
add_subdirectory(core/aarch64)
|
|
else()
|
|
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-littlearm)
|
|
|
|
add_subdirectory(core/aarch32)
|
|
endif()
|