diff options
author | Zack Weinberg <zackw@stanford.edu> | 2001-06-13 14:26:03 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-06-13 14:26:03 +0000 |
commit | 72aad6e65d831c70dccbbef57cf9f24e8ed15d16 (patch) | |
tree | 915e7846979febcf2a2e47495986b5d3e402b9cf /gcc/config/mips/t-iris6 | |
parent | 6cfb3f16f1d53ac04aca870e06dcf7f24f7915df (diff) | |
download | gcc-72aad6e65d831c70dccbbef57cf9f24e8ed15d16.zip gcc-72aad6e65d831c70dccbbef57cf9f24e8ed15d16.tar.gz gcc-72aad6e65d831c70dccbbef57cf9f24e8ed15d16.tar.bz2 |
Makefile.in: Move _bb and __gcc_bcmp to LIB2FUNCS_ST.
* Makefile.in: Move _bb and __gcc_bcmp to LIB2FUNCS_ST.
* libgcc-std.ver: Take out __bb* and __gcc_bcmp.
* config/t-slibgcc-elf-ver, config/t-slibgcc-sld,
config/alpha/t-osf4, config/mips/t-iris6: Extract all
references to @shlib_map_file@, @shlib_objs@, or
@shlib_base_name@ to Makefile variables.
Bump soname version of libgcc to 1.
From-SVN: r43316
Diffstat (limited to 'gcc/config/mips/t-iris6')
-rw-r--r-- | gcc/config/mips/t-iris6 | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gcc/config/mips/t-iris6 b/gcc/config/mips/t-iris6 index 36a8545..7391012 100644 --- a/gcc/config/mips/t-iris6 +++ b/gcc/config/mips/t-iris6 @@ -16,21 +16,26 @@ CRTSTUFF_T_CFLAGS=-g1 # Build a shared libgcc library. SHLIB_EXT = .so +SHLIB_NAME = @shlib_base_name@.so +SHLIB_SONAME = @shlib_base_name@.so.1 +SHLIB_MAP = @shlib_map_file@ +SHLIB_OBJS = @shlib_objs@ + SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \ - -Wl,-soname,@shlib_base_name@.so.0 \ - -o @shlib_base_name@.so @multilib_flags@ @shlib_objs@ -lc && \ - rm -f @shlib_base_name@.so.0 && \ - $(LN_S) @shlib_base_name@.so @shlib_base_name@.so.0 + -Wl,-soname,$(SHLIB_SONAME) \ + -o $(SHLIB_NAME) @multilib_flags@ $(SHLIB_OBJS) -lc && \ + rm -f $(SHLIB_SONAME) && \ + $(LN_S) $(SHLIB_NAME) $(SHLIB_SONAME) # ??? Irix 6.5 seems to eat the option fine (if we somehow remove the # -hidden_symbol option, which is documented to be ignored in conjunction # with -exports_file), but fails to actually hide any symbols. -# -Wl,-exports_file,@shlib_map_file@ +# -Wl,-exports_file,$(SHLIB_MAP) # $(slibdir) double quoted to protect it from expansion while building # libgcc.mk. We want this delayed until actual install time. -SHLIB_INSTALL = $(INSTALL_DATA) @shlib_base_name@.so $$(slibdir)/@shlib_base_name@.so.0; \ - rm -f $$(slibdir)/@shlib_base_name@.so; \ - $(LN_S) @shlib_base_name@.so.0 $$(slibdir)/@shlib_base_name@.so +SHLIB_INSTALL = $(INSTALL_DATA) $(SHLIB_NAME) $$(slibdir)/$(SHLIB_SONAME); \ + rm -f $$(slibdir)/$(SHLIB_NAME); \ + $(LN_S) $(SHLIB_SONAME) $$(slibdir)/$(SHLIB_NAME) SHLIB_MKMAP = $(srcdir)/mkmap-flat.awk SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver |