[Cmake-commits] CMake branch, next, updated. v2.8.6-2096-gee62968

Brad King brad.king at kitware.com
Fri Dec 2 10:14:31 EST 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  ee629683ed5ef4489354dc6ff40aa97ff0fbd208 (commit)
       via  1f49d725abf458070db063b81dd7093a00835274 (commit)
      from  1ea1887c0c056bf59c0596b6ceb7391621f7ee3d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ee629683ed5ef4489354dc6ff40aa97ff0fbd208
commit ee629683ed5ef4489354dc6ff40aa97ff0fbd208
Merge: 1ea1887 1f49d72
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Dec 2 10:14:30 2011 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Dec 2 10:14:30 2011 -0500

    Merge topic 'TinyCC-compiler' into next
    
    1f49d72 Recognize the Tiny C Compiler (#12605)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1f49d725abf458070db063b81dd7093a00835274
commit 1f49d725abf458070db063b81dd7093a00835274
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Dec 2 10:08:15 2011 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Dec 2 10:08:34 2011 -0500

    Recognize the Tiny C Compiler (#12605)
    
    See compiler home page here:
    
      http://tinycc.org/
      http://bellard.org/tcc/
    
    Use the id "TinyCC" as it appears in their online documentation.

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"
 

-----------------------------------------------------------------------

Summary of changes:
 Modules/CMakeCCompilerId.c.in |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list