Skip to content

Commit d75f8c8

Browse files
committed
arch: arc: Rename ARC64 output format to elf64-littlearc64
This commit renames the ARC64 output format from `elf64-littlearc` to `elf64-littlearc64` as required by the updated ARC patches for the GCC 12.1 release. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
1 parent 8d475b4 commit d75f8c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/arc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if(COMPILER STREQUAL arcmwdt)
3434
endif()
3535

3636
if(CONFIG_ISA_ARCV3 AND CONFIG_64BIT)
37-
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf64-littlearc)
37+
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf64-littlearc64)
3838
elseif(CONFIG_ISA_ARCV3 AND NOT CONFIG_64BIT)
3939
set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-littlearc64)
4040
else()

include/zephyr/linker/linker-tool-gcc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
OUTPUT_FORMAT("elf64-littleaarch64")
2929
#elif defined(CONFIG_ARC)
3030
#if defined(CONFIG_ISA_ARCV3) && defined(CONFIG_64BIT)
31-
OUTPUT_FORMAT("elf64-littlearc")
31+
OUTPUT_FORMAT("elf64-littlearc64")
3232
#elif defined(CONFIG_ISA_ARCV3) && !defined(CONFIG_64BIT)
3333
OUTPUT_FORMAT("elf32-littlearc64")
3434
#else

0 commit comments

Comments
 (0)