config/debug/ltrace.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 2444 896cb0d36c1a
child 3142 6569f6a9060c
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@245
     1
# ltrace
yann@245
     2
yann@2444
     3
## depends on ! BACKEND
yann@2444
     4
##
yann@2444
     5
## select LIBELF_TARGET
yann@2444
     6
##
yann@2444
     7
## help ltrace is a program that simply runs the specified command until it exits.
yann@2444
     8
## help It intercepts and records the dynamic library calls which are called by
yann@2444
     9
## help the executed process and the signals which are received by that process.
yann@2444
    10
## help It can also intercept and print the system calls executed by the program.
yann@245
    11
yann@245
    12
choice
yann@245
    13
    bool
yann@245
    14
    prompt "ltrace version"
yann@1535
    15
# Don't remove next line
yann@1535
    16
# CT_INSERT_VERSION_BELOW
yann@245
    17
jocke@1685
    18
config LTRACE_V_0_5_3
jocke@1685
    19
    bool
yann@1786
    20
    prompt "0.5.3"
jocke@1685
    21
    select LTRACE_0_5_3_or_later
jocke@1685
    22
yann@1534
    23
config LTRACE_V_0_5_2
yann@245
    24
    bool
yann@1534
    25
    prompt "0.5.2"
yann@1036
    26
yann@1534
    27
config LTRACE_V_0_5
yann@1437
    28
    bool
yann@1615
    29
    prompt "0.5 (OBSOLETE)"
yann@1615
    30
    depends on OBSOLETE
yann@1534
    31
yann@1534
    32
config LTRACE_V_0_4
yann@1534
    33
    bool
yann@1615
    34
    prompt "0.4 (OBSOLETE)"
yann@1615
    35
    depends on OBSOLETE
yann@1437
    36
yann@245
    37
endchoice
yann@245
    38
yann@245
    39
config LTRACE_VERSION
yann@245
    40
    string
yann@1535
    41
# Don't remove next line
yann@1535
    42
# CT_INSERT_VERSION_STRING_BELOW
jocke@1685
    43
    default "0.5.3" if LTRACE_V_0_5_3
yann@1534
    44
    default "0.5.2" if LTRACE_V_0_5_2
yann@1534
    45
    default "0.5.1" if LTRACE_V_0_5_1
yann@1534
    46
    default "0.5" if LTRACE_V_0_5
yann@245
    47
    default "0.4" if LTRACE_V_0_4
jocke@1685
    48
jocke@1685
    49
config LTRACE_0_5_3_or_later
jocke@1685
    50
    bool