diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-24 20:03:39 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-24 20:03:39 (GMT) |
commit | c9aecb91cc326a8e42a78c11eb2b32ffb2518dc0 (patch) | |
tree | 04b619e5c16bed01634b388d7cd71c660f4ac495 /Modules/CMakeCCompilerId.c | |
parent | 504ea6df4ef615cb16db2d8f647185adc417861d (diff) | |
download | CMake-c9aecb91cc326a8e42a78c11eb2b32ffb2518dc0.zip CMake-c9aecb91cc326a8e42a78c11eb2b32ffb2518dc0.tar.gz CMake-c9aecb91cc326a8e42a78c11eb2b32ffb2518dc0.tar.bz2 |
STYLE: remove debug output, fix indentation
the tests run again successfully, but since CheckTypeSize will switch to a
TRY_COMPILE soon I will look at it again after this change
Alex
Diffstat (limited to 'Modules/CMakeCCompilerId.c')
-rw-r--r-- | Modules/CMakeCCompilerId.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Modules/CMakeCCompilerId.c b/Modules/CMakeCCompilerId.c index 18f0b8f..a29c6a0 100644 --- a/Modules/CMakeCCompilerId.c +++ b/Modules/CMakeCCompilerId.c @@ -41,9 +41,14 @@ /* sdcc, the small devices C compiler for embedded systems, http://sdcc.sourceforge.net - Beside this id not supported yet by CMake */ + Beside this id not supported yet by CMake + Unfortunately this doesn't work because SDCC (and other embedded compilers + too) produce not binary files, but e.g. Intel hex files by default. + This also means it has a different suffix (.ihx) so the file isn't even + found. */ +/* #elif defined(SDCC) -# define COMPILER_ID "SDCC" +# define COMPILER_ID "SDCC" */ #elif defined(_COMPILER_VERSION) # define COMPILER_ID "MIPSpro" |