diff options
Diffstat (limited to 'Modules/Compiler')
-rw-r--r-- | Modules/Compiler/GNU-ASM.cmake | 2 | ||||
-rw-r--r-- | Modules/Compiler/Intel-ASM.cmake | 11 |
2 files changed, 12 insertions, 1 deletions
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>") |