From 1f49d725abf458070db063b81dd7093a00835274 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 2 Dec 2011 10:08:15 -0500 Subject: [PATCH] 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. --- Modules/CMakeCCompilerId.c.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/CMakeCCompilerId.c.in b/Modules/CMakeCCompilerId.c.in index c91553a95..4cc690a26 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"