diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-01 04:45:34 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-01 04:45:34 +0000 |
commit | 650713eb425b76e4d7ad1c42bad9454c3e1ff383 (patch) | |
tree | 8fed1df502bd03a3b0beae14c42b4670796611fe /ltcf-cxx.sh | |
parent | 3c68ac580d9b574c4415828b4f0647e2ef0d4a07 (diff) | |
download | gcc-650713eb425b76e4d7ad1c42bad9454c3e1ff383.tar.gz |
* ltconfig, ltmain.sh: Update from libtool multi-language branch.
* ltcf-c.sh (need_lc): Fix test message. Set wl for archive_cmds.
(ac_cv_prog_cc_pic): Don't print `cached' without `checking'.
* ltcf-cxx.sh (need_lc): Set based on postdeps.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35405 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'ltcf-cxx.sh')
-rw-r--r-- | ltcf-cxx.sh | 50 |
1 files changed, 5 insertions, 45 deletions
diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index cfbe5caaa24..5b28674f3f8 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -1,6 +1,6 @@ #### This script is meant to be sourced by ltconfig. -# $Id: ltcf-cxx.sh,v 1.1.2.18 2000/07/24 06:10:27 oliva Exp $ +# $Id: ltcf-cxx.sh,v 1.1 2000/07/28 18:04:21 bkoz Exp $ # ltcf-cxx.sh - Create a C++ compiler specific configuration # @@ -874,47 +874,7 @@ fi $rm -f confest.$objext -need_lc=yes -if test "$enable_shared" = yes && test "$with_gcc" = yes; then - case "$archive_cmds" in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - echo $ac_n "checking whether -lc is implicitly linked in... $ac_c" 1>&6 - if eval "test \"`echo '$''{'ac_cv_cxx_archive_cmds_needs_lc'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 - need_lc=$ac_cv_cxx_archive_cmds_needs_lc - else - $rm conftest* - echo "static int dummy;" > conftest.$ac_ext - if { (eval echo $progname:@LINENO@: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; }; then - # Append any warnings to the config.log. - cat conftest.err 1>&5 - - soname=conftest - lib=conftest - libobjs=conftest.o - deplibs= - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - allow_undefined_flag= - if { (eval echo $progname:@LINENO@: \"$archive_cmds\") 1>&5; (eval $archive_cmds) 2>&1 | grep " -lc " 1>&5 ; }; then - need_lc=no - fi - else - cat conftest.err 1>&5 - fi - fi - $rm conftest* - echo "$ac_t$need_lc" 1>&6 - ;; - esac -fi -ac_cv_cxx_archive_cmds_needs_lc=$need_lc +case " $postdeps " in +*" -lc "*) need_lc=no ;; +*) need_lc=yes ;; +esac |