diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2011-05-24 17:51:51 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2011-05-24 17:51:51 +0000 |
commit | caee412b75f90163b2ef164881a9737408f61a4e (patch) | |
tree | 35cba01cecefecc85a3ef8512ac4b33827a9b19a /gcc/config.gcc | |
parent | 5eed4f27694914b24cec59029b57f0d7a25b0c34 (diff) | |
download | gcc-caee412b75f90163b2ef164881a9737408f61a4e.zip gcc-caee412b75f90163b2ef164881a9737408f61a4e.tar.gz gcc-caee412b75f90163b2ef164881a9737408f61a4e.tar.bz2 |
re PR target/3746 (compilation of mips-tfile missing mips/a.out.h)
PR target/3746
* config.gcc (alpha*-dec-osf5.1*): Only build mips-tfile,
mips-tdump native.
* mips-tfile.c: Remove CROSS_DIRECTORY_STRUCTURE handling.
* mips-tdump.c: Likewise.
From-SVN: r174128
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 475c4e3..5d52af7 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -748,7 +748,9 @@ alpha*-dec-osf5.1*) then tm_file="${tm_file} dbx.h" fi - if test x$gas != xyes + # mips-tfile and mips-tdump are only used with the native assembler + # and require the Tru64 UNIX <a.out.h>, so only build native. + if test x$gas != xyes && test x${host} = x${target} then extra_passes="mips-tfile mips-tdump" fi |