config/companion_libs/cloog.in
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Fri Jan 27 13:31:16 2012 +0100 (2012-01-27)
changeset 2854 a70abdbfa342
parent 2758 47199f966983
child 2957 3e2f2100a76d
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>
yann@1380
     1
# CLooG options
yann@1380
     2
yann@1380
     3
choice
yann@1380
     4
    bool
yann@1380
     5
    prompt "CLooG/ppl version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@1380
     8
yann@2435
     9
config CLOOG_V_0_15_11
yann@2435
    10
    bool
yann@2435
    11
    prompt "0.15.11 (EXPERIMENTAL)"
yann@2435
    12
    depends on EXPERIMENTAL
yann@2758
    13
    select CLOOG_0_15_1x
yann@2435
    14
yann@2157
    15
config CLOOG_V_0_15_10
yann@2157
    16
    bool
yann@2157
    17
    prompt "0.15.10"
yann@2758
    18
    select CLOOG_0_15_1x
yann@2157
    19
yann@1873
    20
config CLOOG_V_0_15_9
yann@1873
    21
    bool
yann@1873
    22
    prompt "0.15.9"
yann@1873
    23
yann@1873
    24
config CLOOG_V_0_15_8
yann@1873
    25
    bool
yann@1873
    26
    prompt "0.15.8"
yann@1873
    27
yann@1534
    28
config CLOOG_V_0_15_7
yann@1380
    29
    bool
yann@1534
    30
    prompt "0.15.7"
yann@1534
    31
yann@1534
    32
config CLOOG_V_0_15_6
yann@1534
    33
    bool
yann@1534
    34
    prompt "0.15.6"
yann@1534
    35
yann@1380
    36
endchoice
yann@1380
    37
yann@1380
    38
config CLOOG_VERSION
yann@1380
    39
    string
yann@1535
    40
# Don't remove next line
yann@1535
    41
# CT_INSERT_VERSION_STRING_BELOW
yann@2435
    42
    default "0.15.11" if CLOOG_V_0_15_11
yann@2157
    43
    default "0.15.10" if CLOOG_V_0_15_10
yann@1873
    44
    default "0.15.9" if CLOOG_V_0_15_9
yann@1873
    45
    default "0.15.8" if CLOOG_V_0_15_8
yann@1534
    46
    default "0.15.7" if CLOOG_V_0_15_7
yann@1534
    47
    default "0.15.6" if CLOOG_V_0_15_6
yann@2758
    48
yann@2758
    49
config CLOOG_0_15_1x
yann@2758
    50
    bool
yann@2758
    51
    select CLOOG_NEEDS_AUTORECONF
yann@2758
    52
yann@2758
    53
config CLOOG_NEEDS_AUTORECONF
yann@2758
    54
    bool