diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-06-04 19:33:12 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-06-04 19:33:12 +0000 |
commit | 22b9ee0383df8d1abdc885deadbd432d08ebfefb (patch) | |
tree | 5c79f9e30baaa679341fbd0d27dcf87420224c76 /ltcf-c.sh | |
parent | 0b24b76f5da924b25e62ea3d95ad5cbdd501d427 (diff) | |
download | gdb-22b9ee0383df8d1abdc885deadbd432d08ebfefb.tar.gz |
* ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
with_gcc]: Use `gcc -shared' to build a shared library.
Diffstat (limited to 'ltcf-c.sh')
-rw-r--r-- | ltcf-c.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ltcf-c.sh b/ltcf-c.sh index 3245424273d..1ce95e2507d 100644 --- a/ltcf-c.sh +++ b/ltcf-c.sh @@ -513,11 +513,15 @@ else solaris*) no_undefined_flag=' -z defs' - # $CC -shared without GNU ld will not create a library from C++ - # object files and a static libstdc++, better avoid it by now - 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~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' + if test "$with_gcc" = yes; then + 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_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' + fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in |