summaryrefslogtreecommitdiff
path: root/Modules/Compiler/SunPro-ASM.cmake
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-02-08 22:23:54 +0100
committerAlex Neundorf <neundorf@kde.org>2011-02-23 21:16:00 +0100
commitd3e9e8a078a01df4a50f824e0a41b7ca8caf99bf (patch)
tree1ce068f998a99e0afbe348d03f95ffc765ef72ed /Modules/Compiler/SunPro-ASM.cmake
parent64e66ebdc8449aa92f1a0aa66d649aedab0af92d (diff)
downloadcmake-d3e9e8a078a01df4a50f824e0a41b7ca8caf99bf.tar.gz
Add support for ASM for the SunPro compiler
Alex
Diffstat (limited to 'Modules/Compiler/SunPro-ASM.cmake')
-rw-r--r--Modules/Compiler/SunPro-ASM.cmake26
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 0000000000..5f5fafeb67
--- /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)