summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2011-12-06 20:06:34 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-12-06 20:06:34 (GMT)
commit4c84aa7346821958834fb0de5e0862d8d5718cd9 (patch)
tree11bc5f01e810d703827d64bf7c386cf446c13491 /Modules
parent03aeccd4ae9db9388107794678088cded9e4ad4d (diff)
parent0efe602c595e78c5e7cef6c85dc7983be7a905df (diff)
downloadCMake-4c84aa7346821958834fb0de5e0862d8d5718cd9.zip
CMake-4c84aa7346821958834fb0de5e0862d8d5718cd9.tar.gz
CMake-4c84aa7346821958834fb0de5e0862d8d5718cd9.tar.bz2
Merge topic 'TinyCC-compiler'
0efe602 TinyCC: Add default compilation flags (#12605) ec636e2 TinyCC: Add compiler info for shared libs on Linux (#12605) 1f49d72 Recognize the Tiny C Compiler (#12605)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CMakeCCompilerId.c.in3
-rw-r--r--Modules/Compiler/TinyCC-C.cmake8
-rw-r--r--Modules/Platform/Linux-TinyCC-C.cmake4
3 files changed, 15 insertions, 0 deletions
diff --git a/Modules/CMakeCCompilerId.c.in b/Modules/CMakeCCompilerId.c.in
index c91553a..4cc690a 100644
--- a/Modules/CMakeCCompilerId.c.in
+++ b/Modules/CMakeCCompilerId.c.in
@@ -48,6 +48,9 @@
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI_DSP"
+#elif defined(__TINYC__)
+# define COMPILER_ID "TinyCC"
+
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
diff --git a/Modules/Compiler/TinyCC-C.cmake b/Modules/Compiler/TinyCC-C.cmake
new file mode 100644
index 0000000..4a48c0a
--- /dev/null
+++ b/Modules/Compiler/TinyCC-C.cmake
@@ -0,0 +1,8 @@
+SET(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared")
+
+# no optimization in tcc:
+SET (CMAKE_C_FLAGS_INIT "")
+SET (CMAKE_C_FLAGS_DEBUG_INIT "-g")
+SET (CMAKE_C_FLAGS_MINSIZEREL_INIT "-DNDEBUG")
+SET (CMAKE_C_FLAGS_RELEASE_INIT "-DNDEBUG")
+SET (CMAKE_C_FLAGS_RELWITHDEBINFO_INIT "-g")
diff --git a/Modules/Platform/Linux-TinyCC-C.cmake b/Modules/Platform/Linux-TinyCC-C.cmake
new file mode 100644
index 0000000..b753268
--- /dev/null
+++ b/Modules/Platform/Linux-TinyCC-C.cmake
@@ -0,0 +1,4 @@
+SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "")
+SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP "")
+SET(CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG "")
+SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-soname ")