diff options
author | Jeffrey Oldham <oldham@codesourcery.com> | 2001-05-09 22:29:20 +0000 |
---|---|---|
committer | Jeffrey D. Oldham <oldham@gcc.gnu.org> | 2001-05-09 22:29:20 +0000 |
commit | 6ebe3121aa8e693a53f4964bd9b058bf73cb54bf (patch) | |
tree | 61c553b7fb3a6e89b125f43c0c4557d677c00001 | |
parent | 8a1532886f5edbfb01f4f758fb7b33741fc90b75 (diff) | |
download | gcc-6ebe3121aa8e693a53f4964bd9b058bf73cb54bf.zip gcc-6ebe3121aa8e693a53f4964bd9b058bf73cb54bf.tar.gz gcc-6ebe3121aa8e693a53f4964bd9b058bf73cb54bf.tar.bz2 |
ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
* ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
From-SVN: r41931
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ltcf-cxx.sh | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-05-09 Jeffrey Oldham <oldham@codesourcery.com> + + * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds. + 2001-05-03 Alexandre Oliva <aoliva@redhat.com> * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index e348914..c06aaff5 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -302,9 +302,9 @@ case $host_os in *) if test "$with_gcc" = yes; then if test "$with_gnu_ld" = no; then - archive_cmds='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' else - archive_cmds='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -o $lib' + archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -o $lib' fi fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' |