diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-01-30 20:14:53 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-02-23 20:15:18 (GMT) |
commit | 38f92bfbe19afa18f92d336b69576bcba5d1cc35 (patch) | |
tree | 022a8f0048729a3430c7c6ef8c404393774af316 /Modules | |
parent | 4b40d4297aa7b984e9b5fa905cdee21960ec4f8a (diff) | |
download | CMake-38f92bfbe19afa18f92d336b69576bcba5d1cc35.zip CMake-38f92bfbe19afa18f92d336b69576bcba5d1cc35.tar.gz CMake-38f92bfbe19afa18f92d336b69576bcba5d1cc35.tar.bz2 |
Add ASM support for the Intel compiler
Alex
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeDetermineASMCompiler.cmake | 4 | ||||
-rw-r--r-- | Modules/Compiler/GNU-ASM.cmake | 2 | ||||
-rw-r--r-- | Modules/Compiler/Intel-ASM.cmake | 11 |
3 files changed, 16 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineASMCompiler.cmake b/Modules/CMakeDetermineASMCompiler.cmake index 3346358..c09077e 100644 --- a/Modules/CMakeDetermineASMCompiler.cmake +++ b/Modules/CMakeDetermineASMCompiler.cmake @@ -91,6 +91,10 @@ IF(NOT CMAKE_ASM${ASM_DIALECT}_COMPILER_ID) SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_FLAGS_GNU "--version") SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_REGEX_GNU "(GNU assembler)|(GCC)") + LIST(APPEND CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDORS Intel ) + SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_FLAGS_Intel "--version") + SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_REGEX_Intel "(ICC)") + LIST(APPEND CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDORS TI_DSP ) SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_FLAGS_TI_DSP "-h") SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_REGEX_TI_DSP "Texas Instruments") diff --git a/Modules/Compiler/GNU-ASM.cmake b/Modules/Compiler/GNU-ASM.cmake index 93ef724..bec212f 100644 --- a/Modules/Compiler/GNU-ASM.cmake +++ b/Modules/Compiler/GNU-ASM.cmake @@ -1,7 +1,7 @@ # This file is loaded when gcc/g++ is used for assembler files (the "ASM" cmake language) include(Compiler/GNU) -set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;asm) +set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S;asm) set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>") diff --git a/Modules/Compiler/Intel-ASM.cmake b/Modules/Compiler/Intel-ASM.cmake new file mode 100644 index 0000000..07437a8 --- /dev/null +++ b/Modules/Compiler/Intel-ASM.cmake @@ -0,0 +1,11 @@ +SET(CMAKE_ASM_VERBOSE_FLAG "-v") + +SET(CMAKE_ASM_FLAGS_INIT "") +SET(CMAKE_ASM_FLAGS_DEBUG_INIT "-g") +SET(CMAKE_ASM_FLAGS_MINSIZEREL_INIT "-Os -DNDEBUG") +SET(CMAKE_ASM_FLAGS_RELEASE_INIT "-O3 -DNDEBUG") +SET(CMAKE_ASM_FLAGS_RELWITHDEBINFO_INIT "-O2 -g") + +set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s) + +set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>") |