linker: use quotes with OUTPUT_ARCH macro
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
9b93334832
commit
1ff863c823
1 changed files with 3 additions and 3 deletions
|
@ -22,15 +22,15 @@
|
||||||
#elif defined(CONFIG_X86)
|
#elif defined(CONFIG_X86)
|
||||||
#if defined(__IAMCU)
|
#if defined(__IAMCU)
|
||||||
OUTPUT_FORMAT("elf32-iamcu")
|
OUTPUT_FORMAT("elf32-iamcu")
|
||||||
OUTPUT_ARCH(iamcu:intel)
|
OUTPUT_ARCH("iamcu:intel")
|
||||||
#else
|
#else
|
||||||
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
||||||
OUTPUT_ARCH(i386)
|
OUTPUT_ARCH("i386")
|
||||||
#endif
|
#endif
|
||||||
#elif defined(CONFIG_NIOS2)
|
#elif defined(CONFIG_NIOS2)
|
||||||
OUTPUT_FORMAT("elf32-littlenios2", "elf32-bignios2", "elf32-littlenios2")
|
OUTPUT_FORMAT("elf32-littlenios2", "elf32-bignios2", "elf32-littlenios2")
|
||||||
#elif defined(CONFIG_RISCV32)
|
#elif defined(CONFIG_RISCV32)
|
||||||
OUTPUT_ARCH(riscv)
|
OUTPUT_ARCH("riscv")
|
||||||
OUTPUT_FORMAT("elf32-littleriscv")
|
OUTPUT_FORMAT("elf32-littleriscv")
|
||||||
#elif defined(CONFIG_XTENSA)
|
#elif defined(CONFIG_XTENSA)
|
||||||
/* Not needed */
|
/* Not needed */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue