2006-03-07 Paul Brook <paul@codesourcery.com>

* lib/compiler.c: Extract armcc version number.
	* lib/compiler.cc: Ditto.
This commit is contained in:
Paul Brook 2006-03-07 18:51:56 +00:00
parent fc91c6c2b9
commit e546101697
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-03-07 Paul Brook <paul@codesourcery.com>
* lib/compiler.c: Extract armcc version number.
* lib/compiler.cc: Ditto.
2006-03-07 Paul Brook <paul@codesourcery.com>
* gdb.arch/altivec-abi.exp: Use nowarnings instead of

View File

@ -70,3 +70,7 @@ set compiler_info [join {hpacc __HP_aCC} -]
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

View File

@ -58,3 +58,7 @@ set compiler_info [join {hpacc __HP_aCC} -]
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