b6304613bf
The HP CC/aCC compiler is exclusive to HP-UX, for which support has been explicitly removed. Therefore, It does not make sense to keep tests for these compilers' quirks. gdb/testsuite/ChangeLog: * gdb.base/break.exp: Remove references to HP CC/aCC compilers. * gdb.base/call-ar-st.exp: Likewise. * gdb.base/callfuncs.exp: Likewise. * gdb.base/condbreak.exp: Likewise. * gdb.base/constvars.exp: Likewise. * gdb.base/hbreak2.exp: Likewise. * gdb.base/langs.exp: Likewise. * gdb.base/list.exp: Likewise. * gdb.base/long_long.exp: Likewise. * gdb.base/ptype.exp: Likewise. * gdb.base/scope.exp: Likewise. * gdb.base/signals.exp: Likewise. * gdb.base/so-impl-ld.exp: Likewise. * gdb.base/varargs.exp: Likewise. * gdb.base/volatile.exp: Likewise. * gdb.base/whatis.exp: Likewise. * gdb.cp/cplusfuncs.exp: Likewise. * gdb.cp/inherit.exp: Likewise. * gdb.cp/local.exp: Likewise. * gdb.cp/member-ptr.exp: Likewise. * gdb.cp/method.exp: Likewise. * gdb.cp/overload.exp: Likewise. * gdb.cp/templates.exp: Likewise. * gdb.stabs/weird.exp: Likewise. * lib/compiler.c: Likewise. * lib/compiler.cc: Likewise. * lib/cp-support.exp: Likewise. * lib/gdb.exp: Likewise.
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/* This test file is part of GDB, the GNU debugger.
|
|
|
|
Copyright 1995-2015 Free Software Foundation, Inc.
|
|
|
|
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
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/* 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". */
|
|
|
|
set compiler_info "unknown"
|
|
|
|
#if defined (__GNUC__)
|
|
#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
|
|
#endif
|
|
|
|
#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" */
|
|
set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
|
|
#endif
|
|
|
|
#if defined (__ARMCC_VERSION)
|
|
set compiler_info [join {armcc __ARMCC_VERSION} -]
|
|
#endif
|
|
|
|
#if defined (__clang__)
|
|
set compiler_info [join {clang __clang_major__ __clang_minor__ __clang_patchlevel__} -]
|
|
#endif
|