diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-02-08 21:23:54 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-02-23 20:16:00 (GMT) |
commit | d3e9e8a078a01df4a50f824e0a41b7ca8caf99bf (patch) | |
tree | 1ce068f998a99e0afbe348d03f95ffc765ef72ed /Modules/Compiler | |
parent | 64e66ebdc8449aa92f1a0aa66d649aedab0af92d (diff) | |
download | CMake-d3e9e8a078a01df4a50f824e0a41b7ca8caf99bf.zip CMake-d3e9e8a078a01df4a50f824e0a41b7ca8caf99bf.tar.gz CMake-d3e9e8a078a01df4a50f824e0a41b7ca8caf99bf.tar.bz2 |
Add support for ASM for the SunPro compiler
Alex
Diffstat (limited to 'Modules/Compiler')
-rw-r--r-- | Modules/Compiler/SunPro-ASM.cmake | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Modules/Compiler/SunPro-ASM.cmake b/Modules/Compiler/SunPro-ASM.cmake new file mode 100644 index 0000000..5f5fafe --- /dev/null +++ b/Modules/Compiler/SunPro-ASM.cmake @@ -0,0 +1,26 @@ +set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s ) + +set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>") + +SET(CMAKE_ASM_VERBOSE_FLAG "-#") + +SET(CMAKE_SHARED_LIBRARY_ASM_FLAGS "-KPIC") +SET(CMAKE_SHARED_LIBRARY_CREATE_ASM_FLAGS "-G") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_ASM_FLAG "-R") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_ASM_FLAG_SEP ":") +SET(CMAKE_SHARED_LIBRARY_SONAME_ASM_FLAG "-h") + +SET(CMAKE_ASM_FLAGS_INIT "") +SET(CMAKE_ASM_FLAGS_DEBUG_INIT "-g") +SET(CMAKE_ASM_FLAGS_MINSIZEREL_INIT "-xO2 -xspace -DNDEBUG") +SET(CMAKE_ASM_FLAGS_RELEASE_INIT "-xO3 -DNDEBUG") +SET(CMAKE_ASM_FLAGS_RELWITHDEBINFO_INIT "-g -xO2") + +# Initialize ASM link type selection flags. These flags are used when +# building a shared library, shared module, or executable that links +# to other libraries to select whether to use the static or shared +# versions of the libraries. +FOREACH(type SHARED_LIBRARY SHARED_MODULE EXE) + SET(CMAKE_${type}_LINK_STATIC_ASM_FLAGS "-Bstatic") + SET(CMAKE_${type}_LINK_DYNAMIC_ASM_FLAGS "-Bdynamic") +ENDFOREACH(type) |