2004-03-03 Paul Gilliam <pgilliam@us.ibm.com>
* lib/compiler.c: Add test for IBM's xlc compiler. * lib/compiler.cc: Likewise.
This commit is contained in:
parent
25742a2cf0
commit
ae051c1bca
@ -1,3 +1,9 @@
|
|||||||
|
2004-03-03 Paul Gilliam <pgilliam@us.ibm.com>
|
||||||
|
|
||||||
|
* lib/compiler.c: Add test for IBM's xlc compiler.
|
||||||
|
* lib/compiler.cc: Likewise.
|
||||||
|
|
||||||
|
|
||||||
2004-02-24 Joel Brobecker <brobecker@adacore.com>
|
2004-02-24 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* gdb.ada/fixed_points.exp: Create compilation object directory
|
* gdb.ada/fixed_points.exp: Create compilation object directory
|
||||||
|
@ -64,3 +64,9 @@ set compiler_info [join {hpcc __HP_cc} -]
|
|||||||
#if defined (__HP_aCC)
|
#if defined (__HP_aCC)
|
||||||
set compiler_info [join {hpacc __HP_aCC} -]
|
set compiler_info [join {hpacc __HP_aCC} -]
|
||||||
#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" */
|
||||||
|
regsub -all {\.} [join {xlc __xlc__} -] - compiler_info
|
||||||
|
#endif
|
||||||
|
@ -52,3 +52,9 @@ set compiler_info [join {hpcc __HP_cc} -]
|
|||||||
#if defined (__HP_aCC)
|
#if defined (__HP_aCC)
|
||||||
set compiler_info [join {hpacc __HP_aCC} -]
|
set compiler_info [join {hpacc __HP_aCC} -]
|
||||||
#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" */
|
||||||
|
regsub -all {\.} [join {xlc __xlc__} -] - compiler_info
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user