diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-04 20:59:50 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-04 20:59:50 +0000 |
commit | 0198c84ea87c0d8eadef61a4ec5b1fe16f48a85c (patch) | |
tree | 7abca2293f4e4c2da2235b9880700bc55eadd1a1 /gcc/configure.in | |
parent | eca81fa523447a889b107fe20701ef7ee80ee763 (diff) | |
download | gcc-0198c84ea87c0d8eadef61a4ec5b1fe16f48a85c.tar.gz |
* rs6000/linux.h: don't define DEFAULT_VTABLE_THUNKS to 1 if
USE_GNULIBC_1 is defined
* configure.in: add a new case powerpc-*-linux-gnulibc1 which
includes the t-linux-gnulibc1 fragment
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18405 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index 9fa47b6d58a..4b59d9e5791 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -2149,6 +2149,24 @@ for machine in $build $host $target; do fixincludes=Makefile.in extra_headers=ppc-asm.h ;; + powerpc-*-linux-gnulibc1) + tm_file=rs6000/linux.h + xm_file=rs6000/xm-sysv4.h + out_file=rs6000/rs6000.c + if [[ x$gas = xyes ]] + then + tmake_file="rs6000/t-ppcos t-linux t-linux-gnulibc1 rs6000/t-ppccomm" + else + tmake_file="rs6000/t-ppc t-linux t-linux-gnulibc1 rs6000/t-ppccomm" + fi + xmake_file=x-linux + fixincludes=Makefile.in + extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" + extra_headers=ppc-asm.h + if [[ x$enable_threads = xyes ]]; then + thread_file='posix' + fi + ;; powerpc-*-linux-gnu*) tm_file=rs6000/linux.h xm_file=rs6000/xm-sysv4.h |