* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
archives.
This commit is contained in:
parent
f7fa593d6b
commit
7c5ebbfd3a
|
@ -1,3 +1,8 @@
|
||||||
|
2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
||||||
|
|
||||||
|
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
|
||||||
|
archives.
|
||||||
|
|
||||||
2001-05-28 Simon Patarin <simon.patarin@inria.fr>
|
2001-05-28 Simon Patarin <simon.patarin@inria.fr>
|
||||||
|
|
||||||
* ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
|
* ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
|
||||||
|
|
15
ltcf-c.sh
15
ltcf-c.sh
|
@ -411,10 +411,17 @@ else
|
||||||
;;
|
;;
|
||||||
|
|
||||||
hpux9* | hpux10* | hpux11*)
|
hpux9* | hpux10* | hpux11*)
|
||||||
case $host_os in
|
if test $with_gcc = yes; then
|
||||||
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' ;;
|
case "$host_os" in
|
||||||
*) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;;
|
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' ;;
|
||||||
esac
|
*) 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_flag_spec='${wl}+b ${wl}$libdir'
|
||||||
hardcode_libdir_separator=:
|
hardcode_libdir_separator=:
|
||||||
hardcode_direct=yes
|
hardcode_direct=yes
|
||||||
|
|
Loading…
Reference in New Issue