forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arch: arm: Remove extraneous root cmake files
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>
- Loading branch information
1 parent
c3a889f
commit c6a5b1e
Showing
4 changed files
with
23 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if(CONFIG_ARM64) | ||
include(aarch64.cmake) | ||
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf64-littleaarch64) | ||
|
||
add_subdirectory(core/aarch64) | ||
else() | ||
include(aarch32.cmake) | ||
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-littlearm) | ||
|
||
add_subdirectory(core/aarch32) | ||
endif() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters