summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCCompilerId.c.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-03-10 13:32:25 (GMT)
committerBrad King <brad.king@kitware.com>2008-03-10 13:32:25 (GMT)
commit70c2dc8a64505d2cb6b3914dff966ea008865028 (patch)
tree078224d3162904cb42a4165029be52cac29431dd /Modules/CMakeCCompilerId.c.in
parentd73d9eb0f0ee96c78d16a3ce14bc98482b4f4f63 (diff)
downloadCMake-70c2dc8a64505d2cb6b3914dff966ea008865028.zip
CMake-70c2dc8a64505d2cb6b3914dff966ea008865028.tar.gz
CMake-70c2dc8a64505d2cb6b3914dff966ea008865028.tar.bz2
ENH: Make compiler id detection more robust
- Split INFO strings in source into multiple pieces to make sure assembly or other listings produced by the compiler are never matched by the regex - Store INFO strings via pointer instead of array to convince some compilers to store the string literally in the binary - This should help make it work for sdcc 2.8.0 RC1
Diffstat (limited to 'Modules/CMakeCCompilerId.c.in')
-rw-r--r--Modules/CMakeCCompilerId.c.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/CMakeCCompilerId.c.in b/Modules/CMakeCCompilerId.c.in
index d5ae00a..ecbe431 100644
--- a/Modules/CMakeCCompilerId.c.in
+++ b/Modules/CMakeCCompilerId.c.in
@@ -75,6 +75,10 @@ int main() { return 0; }
#endif
-char info_compiler[] = "INFO:compiler[" COMPILER_ID "]";
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
@CMAKE_C_COMPILER_ID_PLATFORM_CONTENT@