scripts/build/companion_libs/mpc.sh
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Fri Jan 27 13:31:16 2012 +0100 (2012-01-27)
changeset 2854 a70abdbfa342
parent 2350 069c0df98b64
child 2927 ddaae597fd7c
permissions -rw-r--r--
complibs/cloog: fix linking with libm

In Ubuntu 11.04 and 11.10, the default options for ld have changed.
--no-copy-dt-needed-entries and --as-needed are now enabled by default, which
causes errors like:

[EXTRA] Checking CLooG/ppl
[DEBUG] ==> Executing: 'make' '-j3' '-s' 'check'
[ALL ] Making check in .
[ALL ] config.status: creating include/cloog/cloog-config.h
[ALL ] config.status: include/cloog/cloog-config.h is unchanged
[ALL ] libtool: link: i686-build_pc-linux-gnu-gcc -Wall -fomit-frame-pointer
-pipe -o cloog cloog.o -L/<snip>/build/static/lib ./.libs/libcloog.a -lm
/<snip>/build/static/lib/libppl_c.a /<snip>/build/static/lib/libpwl.a
/<snip>/build/static/lib/libppl.a /<snip>/build/static/lib/libgmpxx.a
/<snip>/build/static/lib/libgmp.a -lstdc++
[ALL ] /usr/bin/ld: /<snip>/build/static/lib/libppl.a(MIP_Problem.o):
undefined reference to symbol 'sqrt@@GLIBC_2.0'
[ALL ] /usr/bin/ld: note: 'sqrt@@GLIBC_2.0' is defined in DSO
/usr/lib/gcc/i686-linux-gnu/4.6.1/../../../i386-linux-gnu/libm.so so try adding
it to the linker command line
[ALL ] /usr/lib/gcc/i686-linux-gnu/4.6.1/../../../i386-linux-gnu/libm.so:
could not read symbols: Invalid operation
[ALL ] collect2: ld returned 1 exit status
[ERROR] make[2]: *** [cloog] Error 1
[ERROR] make[1]: *** [check-recursive] Error 1

See:
https://wiki.ubuntu.com/NattyNarwhal/ToolchainTransition

This patch fixes these errors by placing '-lm' at the right place on the command
line as libppl requires libm when linking cloog.

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
     1 # This file adds the functions to build the MPC library
     2 # Copyright 2009 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 do_mpc_get() { :; }
     6 do_mpc_extract() { :; }
     7 do_mpc() { :; }
     8 
     9 # Overide functions depending on configuration
    10 if [ "${CT_MPC}" = "y" ]; then
    11 
    12 # Download MPC
    13 do_mpc_get() {
    14     CT_GetFile "mpc-${CT_MPC_VERSION}" .tar.gz      \
    15         http://www.multiprecision.org/mpc/download
    16 }
    17 
    18 # Extract MPC
    19 do_mpc_extract() {
    20     CT_Extract "mpc-${CT_MPC_VERSION}"
    21     CT_Patch "mpc" "${CT_MPC_VERSION}"
    22 }
    23 
    24 do_mpc() {
    25     mkdir -p "${CT_BUILD_DIR}/build-mpc"
    26     cd "${CT_BUILD_DIR}/build-mpc"
    27 
    28     CT_DoStep INFO "Installing MPC"
    29 
    30     CT_DoLog EXTRA "Configuring MPC"
    31 
    32     CT_DoExecLog CFG                                \
    33     CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
    34     "${CT_SRC_DIR}/mpc-${CT_MPC_VERSION}/configure" \
    35         --build=${CT_BUILD}                         \
    36         --host=${CT_HOST}                           \
    37         --prefix="${CT_COMPLIBS_DIR}"               \
    38         --with-gmp="${CT_COMPLIBS_DIR}"             \
    39         --with-mpfr="${CT_COMPLIBS_DIR}"            \
    40         --disable-shared                            \
    41         --enable-static
    42 
    43     CT_DoLog EXTRA "Building MPC"
    44     CT_DoExecLog ALL make ${JOBSFLAGS}
    45 
    46     if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
    47         CT_DoLog EXTRA "Checking MPC"
    48         CT_DoExecLog ALL make ${JOBSFLAGS} -s check
    49     fi
    50 
    51     CT_DoLog EXTRA "Installing MPC"
    52     CT_DoExecLog ALL make install
    53 
    54     CT_EndStep
    55 }
    56 
    57 fi # CT_MPC