* ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
with_gcc]: Use `gcc -shared' to build a shared library.
This commit is contained in:
parent
566e9a3054
commit
839bbd8c6b
2 changed files with 14 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-06-04 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
|
||||||
|
with_gcc]: Use `gcc -shared' to build a shared library.
|
||||||
|
|
||||||
2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
|
||||||
|
|
||||||
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
|
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
|
||||||
|
|
|
@ -513,11 +513,15 @@ else
|
||||||
|
|
||||||
solaris*)
|
solaris*)
|
||||||
no_undefined_flag=' -z defs'
|
no_undefined_flag=' -z defs'
|
||||||
# $CC -shared without GNU ld will not create a library from C++
|
if test "$with_gcc" = yes; then
|
||||||
# object files and a static libstdc++, better avoid it by now
|
archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
|
||||||
|
archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
|
||||||
|
$CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
|
||||||
|
else
|
||||||
archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
|
archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
|
||||||
archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
|
archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
|
||||||
$LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
|
$LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
|
||||||
|
fi
|
||||||
hardcode_libdir_flag_spec='-R$libdir'
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
hardcode_shlibpath_var=no
|
hardcode_shlibpath_var=no
|
||||||
case $host_os in
|
case $host_os in
|
||||||
|
|
Loading…
Reference in a new issue