diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-06-04 19:25:10 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-06-04 19:25:10 +0000 |
commit | 566e9a30547af0a698b1d16a489d12f47b18b56e (patch) | |
tree | d9d4126eaa6266caa2532db3b24e4481f88750c0 /ltcf-c.sh | |
parent | 5199a87b39672dd030fbb232f185186d85a5a5bf (diff) | |
download | binutils-gdb-566e9a30547af0a698b1d16a489d12f47b18b56e.tar.gz |
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
archives.
Diffstat (limited to 'ltcf-c.sh')
-rw-r--r-- | ltcf-c.sh | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/ltcf-c.sh b/ltcf-c.sh index d9bbae95441..3245424273d 100644 --- a/ltcf-c.sh +++ b/ltcf-c.sh @@ -411,10 +411,17 @@ else ;; hpux9* | hpux10* | hpux11*) - case $host_os in - hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; - *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; - esac + if test $with_gcc = yes; then + case "$host_os" in + hpux9*) archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; + *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; + esac + else + case $host_os in + hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;; + *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; + esac + fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes |