diff options
| author | mkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 08:24:10 +0000 |
|---|---|---|
| committer | mkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 08:24:10 +0000 |
| commit | f2ea04f516b8a6f56662206aa34315fbb5dfab07 (patch) | |
| tree | 4b892747a74b18ff7f6089b2451b78619e34ef96 | |
| parent | 8e19549ab21824bb5597c990f785cb0c132b4b2c (diff) | |
| download | ppe42-gcc-f2ea04f516b8a6f56662206aa34315fbb5dfab07.tar.gz ppe42-gcc-f2ea04f516b8a6f56662206aa34315fbb5dfab07.zip | |
Fix mips64-linux and s390x-linux builds.
* config.gcc (mips*-mti-linux*, mips64*-*-linux*):
Add android definitions.
(s390x-*-linux*): Use linux-protos.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205849 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config.gcc | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 27c9cd71011..0f34fb242d7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-12-10 Maxim Kuvyrkov <maxim@kugelworks.com> + + * config.gcc (mips*-mti-linux*, mips64*-*-linux*): + Add android definitions. + (s390x-*-linux*): Use linux-protos.h. + 2013-12-10 Bin Cheng <bin.cheng@arm.com> PR tree-optimization/41488 diff --git a/gcc/config.gcc b/gcc/config.gcc index 93743d8c865..8464d8fdfee 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1918,14 +1918,16 @@ mips*-*-netbsd*) # NetBSD/mips, either endian. extra_options="${extra_options} netbsd.opt netbsd-elf.opt" ;; mips*-mti-linux*) - tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/gnu-user64.h mips/linux64.h mips/linux-common.h mips/mti-linux.h" + tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/gnu-user64.h mips/linux64.h mips/linux-common.h mips/mti-linux.h" + extra_options="${extra_options} linux-android.opt" tmake_file="${tmake_file} mips/t-mti-linux" tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32" gnu_ld=yes gas=yes ;; mips64*-*-linux* | mipsisa64*-*-linux*) - tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/gnu-user64.h mips/linux64.h mips/linux-common.h" + tm_file="dbxelf.h elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file} mips/gnu-user.h mips/gnu-user64.h mips/linux64.h mips/linux-common.h" + extra_options="${extra_options} linux-android.opt" tmake_file="${tmake_file} mips/t-linux64" tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32" case ${target} in @@ -2387,7 +2389,7 @@ s390-*-linux*) s390x-*-linux*) default_gnu_indirect_function=yes tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h s390/linux.h" - tm_p_file=s390/s390-protos.h + tm_p_file="linux-protos.h s390/s390-protos.h" md_file=s390/s390.md extra_modes=s390/s390-modes.def out_file=s390/s390.c |

