diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 1998-03-04 13:59:50 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-04 13:59:50 -0700 |
commit | ce514f5730c73704a3575bc793500b960174c36d (patch) | |
tree | 7abca2293f4e4c2da2235b9880700bc55eadd1a1 /gcc/config/rs6000 | |
parent | f75fb5095c135e0976a065a4fa3042e5db7e997c (diff) | |
download | gcc-ce514f5730c73704a3575bc793500b960174c36d.zip gcc-ce514f5730c73704a3575bc793500b960174c36d.tar.gz gcc-ce514f5730c73704a3575bc793500b960174c36d.tar.bz2 |
linux.h: don't define DEFAULT_VTABLE_THUNKS to 1 if USE_GNULIBC_1 is defined
* 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
From-SVN: r18405
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/linux.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h index f88a15e..21d9bc8 100644 --- a/gcc/config/rs6000/linux.h +++ b/gcc/config/rs6000/linux.h @@ -64,7 +64,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define MULTILIB_DEFAULTS { "mbig", "mcall-linux" } #undef DEFAULT_VTABLE_THUNKS +#ifndef USE_GNULIBC_1 #define DEFAULT_VTABLE_THUNKS 1 +#endif #undef JUMP_TABLES_IN_TEXT_SECTION #define JUMP_TABLES_IN_TEXT_SECTION |