diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-25 19:22:22 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-25 19:22:22 (GMT) |
commit | f4eb541880bfc89456e26d8b3eb62ec590571da5 (patch) | |
tree | 4e549a05db829d9e7fd3324e3f687e0aa2499c65 /Modules/CMakeCCompilerId.c | |
parent | 1ed238c7f5f1e2573beb864ea7b2b0c5be4508f2 (diff) | |
download | CMake-f4eb541880bfc89456e26d8b3eb62ec590571da5.zip CMake-f4eb541880bfc89456e26d8b3eb62ec590571da5.tar.gz CMake-f4eb541880bfc89456e26d8b3eb62ec590571da5.tar.bz2 |
ENH: make the compiler id detection work, even if the output file name of
the compiler is completely unknown and even if it produces intel hex or
motorola s-record files, with test
Alex
Diffstat (limited to 'Modules/CMakeCCompilerId.c')
-rw-r--r-- | Modules/CMakeCCompilerId.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Modules/CMakeCCompilerId.c b/Modules/CMakeCCompilerId.c index a29c6a0..8a8753a 100644 --- a/Modules/CMakeCCompilerId.c +++ b/Modules/CMakeCCompilerId.c @@ -41,14 +41,9 @@ /* sdcc, the small devices C compiler for embedded systems, http://sdcc.sourceforge.net - 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. */ -/* + Beside this id not supported yet by CMake. */ #elif defined(SDCC) -# define COMPILER_ID "SDCC" */ +# define COMPILER_ID "SDCC" #elif defined(_COMPILER_VERSION) # define COMPILER_ID "MIPSpro" |