summaryrefslogtreecommitdiffstats
path: root/Modules/Platform
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/Platform')
-rw-r--r--Modules/Platform/Linux-Intel-C.cmake13
-rw-r--r--Modules/Platform/Linux-Intel-CXX.cmake (renamed from Modules/Platform/Linux-icpc.cmake)1
2 files changed, 13 insertions, 1 deletions
diff --git a/Modules/Platform/Linux-Intel-C.cmake b/Modules/Platform/Linux-Intel-C.cmake
new file mode 100644
index 0000000..bde187e
--- /dev/null
+++ b/Modules/Platform/Linux-Intel-C.cmake
@@ -0,0 +1,13 @@
+SET (CMAKE_C_FLAGS_INIT "")
+SET (CMAKE_C_FLAGS_DEBUG_INIT "-g")
+SET (CMAKE_C_FLAGS_MINSIZEREL_INIT "-Os -DNDEBUG")
+SET (CMAKE_C_FLAGS_RELEASE_INIT "-O3 -DNDEBUG")
+SET (CMAKE_C_FLAGS_RELWITHDEBINFO_INIT "-O2 -g")
+
+FIND_PROGRAM(XIAR xiar)
+IF(XIAR)
+ SET(CMAKE_C_CREATE_STATIC_LIBRARY
+ "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> "
+ "${XIAR} -s <TARGET> ")
+ENDIF(XIAR)
+MARK_AS_ADVANCED(XIAR)
diff --git a/Modules/Platform/Linux-icpc.cmake b/Modules/Platform/Linux-Intel-CXX.cmake
index 2d1d879..990a17d 100644
--- a/Modules/Platform/Linux-icpc.cmake
+++ b/Modules/Platform/Linux-Intel-CXX.cmake
@@ -20,4 +20,3 @@ IF(XIAR)
"${XIAR} -s <TARGET> ")
ENDIF(XIAR)
MARK_AS_ADVANCED(XIAR)
-