diff options
author | Stefan Andersson <tfosm@hotmail.com> | 2019-07-03 12:52:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-07-08 17:11:45 (GMT) |
commit | c242187875303219db49089e401d62a47f79207e (patch) | |
tree | 63a86ff4df6c1811446dd624108d019167b55465 /Modules/CMakeDetermineASMCompiler.cmake | |
parent | 753373579e3dd8cf19f0fc18f4d9bec43a2d82e8 (diff) | |
download | CMake-c242187875303219db49089e401d62a47f79207e.zip CMake-c242187875303219db49089e401d62a47f79207e.tar.gz CMake-c242187875303219db49089e401d62a47f79207e.tar.bz2 |
IAR: Add support for the RISC-V compiler
Diffstat (limited to 'Modules/CMakeDetermineASMCompiler.cmake')
-rw-r--r-- | Modules/CMakeDetermineASMCompiler.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineASMCompiler.cmake b/Modules/CMakeDetermineASMCompiler.cmake index a48d33c..e47f3a4 100644 --- a/Modules/CMakeDetermineASMCompiler.cmake +++ b/Modules/CMakeDetermineASMCompiler.cmake @@ -129,7 +129,7 @@ if(NOT CMAKE_ASM${ASM_DIALECT}_COMPILER_ID) if("${_compileid}" MATCHES "V([0-9]+\\.[0-9]+\\.[0-9]+)") set(CMAKE_ASM${ASM_DIALECT}_COMPILER_VERSION ${CMAKE_MATCH_1}) endif() - string(REGEX MATCHALL "([A-Za-z0-9]+)" _all_compileid_matches "${_compileid}") + string(REGEX MATCHALL "([A-Za-z0-9-]+)" _all_compileid_matches "${_compileid}") if(_all_compileid_matches) list(GET _all_compileid_matches "-1" CMAKE_ASM${ASM_DIALECT}_COMPILER_ARCHITECTURE_ID) endif() |