mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
* lib/gdb.exp: Skip CHILL for AIX.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Fri Mar 17 05:43:28 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* lib/gdb.exp: Skip CHILL for AIX.
|
||||||
|
|
||||||
Thu Mar 16 16:27:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Thu Mar 16 16:27:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
* gdb.base/nodebug.exp: It is OK if GDB thinks top and middle have
|
* gdb.base/nodebug.exp: It is OK if GDB thinks top and middle have
|
||||||
|
@ -554,5 +554,10 @@ if ![info exists argv0] then {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc skip_chill_tests {} {
|
proc skip_chill_tests {} {
|
||||||
return ![isnative]
|
# For crosses, the CHILL runtime doesn't build because it can't find
|
||||||
|
# setjmp.h, stdio.h, etc.
|
||||||
|
# For AIX (as of 16 Mar 95), (a) there is no language code for
|
||||||
|
# CHILL in output_epilog in gcc/config/rs6000/rs6000.c, (b) collect2
|
||||||
|
# does not get along with AIX's too-clever linker.
|
||||||
|
return ![isnative] || [istarget "*-*-aix*"]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user