diff options
author | Nico Mueller <Nico.Mueller@de.bosch.com> | 2019-09-23 09:57:54 (GMT) |
---|---|---|
committer | Nico Mueller <Nico.Mueller@de.bosch.com> | 2019-09-23 11:14:14 (GMT) |
commit | 158f3795b812d6ae2f9a67550b53b071c285e623 (patch) | |
tree | 9a56971b1435a422012f35eb9b72ce79a359287b /Modules/Compiler | |
parent | aebb1af7a2ca9c20b6ed5bbb4dc1fed233223481 (diff) | |
download | CMake-158f3795b812d6ae2f9a67550b53b071c285e623.zip CMake-158f3795b812d6ae2f9a67550b53b071c285e623.tar.gz CMake-158f3795b812d6ae2f9a67550b53b071c285e623.tar.bz2 |
IAR: Add v850 assembler support
Assembler compiler configuration for 'v850' architecture
Issue: #17264
Diffstat (limited to 'Modules/Compiler')
-rw-r--r-- | Modules/Compiler/IAR-ASM.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Compiler/IAR-ASM.cmake b/Modules/Compiler/IAR-ASM.cmake index 437678e..413d9e2 100644 --- a/Modules/Compiler/IAR-ASM.cmake +++ b/Modules/Compiler/IAR-ASM.cmake @@ -37,6 +37,11 @@ elseif("${CMAKE_ASM${ASM_DIALECT}_COMPILER_ARCHITECTURE_ID}" STREQUAL "MSP430") __compiler_iar_xlink(ASM) set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s43;asm;msa) +elseif("${CMAKE_ASM${ASM_DIALECT}_COMPILER_ARCHITECTURE_ID}" STREQUAL "V850") + set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> -S <SOURCE> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT>") + __compiler_iar_xlink(ASM) + set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS r85;asm;msa) + else() message(FATAL_ERROR "CMAKE_ASM${ASM_DIALECT}_COMPILER_ARCHITECTURE_ID not detected. This should be automatic.") endif() |