diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2002-07-11 18:56:58 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2002-07-11 18:56:58 +0000 |
commit | 789b7de56b7080d797f93ca592c70e1a49dc9f6e (patch) | |
tree | 0f25ed88f014a4c3da4de289b5344558a429cb40 /gcc/configure.in | |
parent | a18c2c5f9831b34d029ffe32014b40fa1c3cf02c (diff) | |
download | gcc-789b7de56b7080d797f93ca592c70e1a49dc9f6e.zip gcc-789b7de56b7080d797f93ca592c70e1a49dc9f6e.tar.gz gcc-789b7de56b7080d797f93ca592c70e1a49dc9f6e.tar.bz2 |
configure.in (mips*-*-irix6*o32): Enable stabs.
* configure.in (mips*-*-irix6*o32): Enable stabs.
gcc:
* config.gcc (mips-sgi-irix6*o32): New configuration.
* configure.in (libgcc_visibility): Disable for mips-sgi-irix6*o32
configurations.
* configure: Regenerate.
* config/mips/iris6-o32-as.h: New file.
* config/mips/iris6-o32.h: New file.
* config/mips/iris5gas.h (TARGET_ASM_NAMED_SECTION): Define.
(NM_FLAGS): Define.
(HAVE_AS_SHF_MERGE): Undefine.
* config/mips/t-iris5-as: New file.
* config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): Use it.
* config/mips/t-iris6 (SHLIB_EXT, SHLIB_SOLINK, SHLIB_SONAME,
SHLIB_NAME, SHLIB_MAP, SHLIB_OBJS, SHLIB_SLIBDIR_QUAL, SHLIB_LINK,
SHLIB_INSTALL, SHLIB_MKMAP, SHLIB_MAPFILES, FPBIT, DPBIT,
dp-bit.c, fp-bit.c): Move ...
* config/mips/t-iris5-6: ... here.
New file, shared by IRIX 5 and IRIX 6.
* config.gcc (mips-sgi-irix6*o32, mips-sgi-irix6*,
mips-sgi-irix5*): Use it.
* config/mips/iris6.h: Remove duplicate comment.
* config/mips/mips.c (TARGET_ASM_UNALIGNED_DI_OP) [TARGET_IRIX5 &&
!TARGET_IRIX6]: Define.
(mips_asm_file_start): Don't emit mdebug.<ABI> sections on IRIX 5/6.
* config/mips/mips.h (ASM_DECLARE_FUNCTION_NAME): Fix comment.
gcc/testsuite:
* gcc.misc-tests/linkage.exp: Handle mips-sgi-irix6*o32
configuration and IRIX 6 O32 ABI.
libstdc++-v3:
* configure.target (target_os switch): Allow for irix6*o32
configurations.
From-SVN: r55401
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index e75215a..2b6de17 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1592,6 +1592,15 @@ if test x"$gcc_cv_as_hidden" = xyes; then fi AC_MSG_RESULT($gcc_cv_as_hidden) libgcc_visibility=$gcc_cv_as_hidden +case "$target" in + mips-sgi-irix6*o32) + if test x"$gnu_ld_flag" = x"no"; then + # Even if using gas with .hidden support, the resulting object files + # cannot be linked with the IRIX 6 O32 linker. + libgcc_visibility=no + fi + ;; +esac AC_SUBST(libgcc_visibility) AC_MSG_CHECKING(assembler leb128 support) |