scripts/build/cc/gcc.sh
branch1.8
changeset 2073 a3b7a63dce01
parent 2045 fdaa6c7f6dea
child 2122 eb837be50f8f
child 2150 f97a8ad2b172
     1.1 --- a/scripts/build/cc/gcc.sh	Thu Jul 29 19:47:16 2010 +0200
     1.2 +++ b/scripts/build/cc/gcc.sh	Thu Aug 05 18:19:07 2010 +0200
     1.3 @@ -161,8 +161,9 @@
     1.4      # When companion libraries are build static (eg !shared),
     1.5      # the libstdc++ is not pulled automatically, although it
     1.6      # is needed. Shoe-horn it in our LDFLAGS
     1.7 +    # Ditto libm on some Fedora boxen
     1.8      if [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
     1.9 -        core_LDFLAGS='-lstdc++'
    1.10 +        core_LDFLAGS='-lstdc++ -lm'
    1.11      fi
    1.12      if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
    1.13          extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
    1.14 @@ -357,7 +358,8 @@
    1.15          # When companion libraries are build static (eg !shared),
    1.16          # the libstdc++ is not pulled automatically, although it
    1.17          # is needed. Shoe-horn it in our LDFLAGS
    1.18 -        final_LDFLAGS='-lstdc++'
    1.19 +        # Ditto libm on some Fedora boxen
    1.20 +        final_LDFLAGS='-lstdc++ -lm'
    1.21      fi
    1.22      if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
    1.23          extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")