2003-11-17 16:00:20 +01:00
|
|
|
/* This test file is part of GDB, the GNU debugger.
|
|
|
|
|
2011-01-01 16:34:07 +01:00
|
|
|
Copyright 1995, 1999, 2003, 2004, 2007, 2008, 2009, 2010, 2011
|
2009-01-03 06:58:08 +01:00
|
|
|
Free Software Foundation, Inc.
|
2003-11-17 16:00:20 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-11-17 16:00:20 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-08-23 20:08:50 +02:00
|
|
|
|
2003-11-17 16:00:20 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-11-17 16:00:20 +01:00
|
|
|
|
2004-08-23 15:43:15 +02:00
|
|
|
*/
|
2003-11-17 16:00:20 +01:00
|
|
|
|
2004-01-24 22:59:03 +01:00
|
|
|
/* This file is exactly like compiler.c. I could just use compiler.c if
|
|
|
|
I could be sure that every C++ compiler accepted extensions of ".c". */
|
1999-11-17 03:31:06 +01:00
|
|
|
|
2004-06-30 10:01:33 +02:00
|
|
|
/* Note the semicolon at the end of this line. Older versions of
|
|
|
|
hp c++ have a bug in string preprocessing: if the last token on a
|
|
|
|
line is a string, then the preprocessor concatenates the next line
|
|
|
|
onto the current line and eats the newline! That messes up TCL of
|
|
|
|
course. That happens with HP aC++ A.03.13, but it no longer happens
|
|
|
|
with HP aC++ A.03.45. */
|
|
|
|
|
|
|
|
set compiler_info "unknown" ;
|
1999-11-17 03:31:06 +01:00
|
|
|
|
|
|
|
#if defined (__GNUC__)
|
2004-06-10 23:38:03 +02:00
|
|
|
#if defined (__GNUC_PATCHLEVEL__)
|
|
|
|
/* Only GCC versions >= 3.0 define the __GNUC_PATCHLEVEL__ macro. */
|
|
|
|
set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__} -]
|
|
|
|
#else
|
|
|
|
set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
|
|
|
|
#endif
|
1999-11-17 03:31:06 +01:00
|
|
|
#endif
|
|
|
|
|
2004-07-02 06:18:17 +02:00
|
|
|
#if defined (__HP_CXD_SPP)
|
|
|
|
/* older hp ansi c, such as A.11.01.25171.gp, defines this */
|
|
|
|
set compiler_info [join {hpcc __HP_CXD_SPP} -]
|
|
|
|
#endif
|
|
|
|
|
2004-01-24 22:59:03 +01:00
|
|
|
#if defined (__HP_cc)
|
2004-07-02 06:18:17 +02:00
|
|
|
/* newer hp ansi c, such as B.11.11.28706.gp, defines this */
|
2004-01-24 22:59:03 +01:00
|
|
|
set compiler_info [join {hpcc __HP_cc} -]
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (__HP_aCC)
|
|
|
|
set compiler_info [join {hpacc __HP_aCC} -]
|
|
|
|
#endif
|
2005-03-04 18:35:46 +01:00
|
|
|
|
|
|
|
#if defined (__xlc__)
|
|
|
|
/* IBM'x xlc compiler. NOTE: __xlc__ expands to a double quoted string of four
|
|
|
|
numbers seperated by '.'s: currently "7.0.0.0" */
|
2005-03-07 19:57:57 +01:00
|
|
|
set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
|
2005-03-04 18:35:46 +01:00
|
|
|
#endif
|
2006-03-07 19:51:56 +01:00
|
|
|
|
|
|
|
#if defined (__ARMCC_VERSION)
|
|
|
|
set compiler_info [join {armcc __ARMCC_VERSION} -]
|
|
|
|
#endif
|