config/binutils/elf2flt.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 2467 200836977ce6
child 3090 a221c86d9b33
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@1345
     1
# elf2flt options
yann@1345
     2
yann@1345
     3
if ARCH_BINFMT_FLAT
yann@1345
     4
yann@1345
     5
comment "elf2flt"
yann@1345
     6
yann@1345
     7
choice
yann@1345
     8
    bool
yann@1345
     9
    prompt "elf2flt version"
yann@1535
    10
# Don't remove next line
yann@1535
    11
# CT_INSERT_VERSION_BELOW
yann@1345
    12
yann@1345
    13
config ELF2FLT_CVSHEAD
yann@1345
    14
    bool
yann@1345
    15
    prompt "CVS Head"
yann@1345
    16
    help
yann@1345
    17
      Grab the latest version of elf2flt from the CVS repository
yann@1345
    18
yann@1345
    19
config ELF2FLT_CVS_SNAPSHOT
yann@1345
    20
    bool
yann@1345
    21
    prompt "CVS Snapshot"
yann@1345
    22
yann@1345
    23
endchoice
yann@1345
    24
yann@1345
    25
config ELF2FLT_CVS_SNAPSHOT_SPEC
yann@1345
    26
    string
yann@1345
    27
    depends on ELF2FLT_CVS_SNAPSHOT
yann@1345
    28
    default ""
yann@1345
    29
    prompt "CVS refspec for elf2flt"
yann@1345
    30
    help
yann@1345
    31
       What you enter here will be passed verbatim to the cvs checkout command
yann@1345
    32
       so be careful!
yann@1345
    33
yann@1345
    34
config ELF2FLT_VERSION
yann@1345
    35
    string
yann@1345
    36
    default "head" if ELF2FLT_CVSHEAD
yann@1535
    37
# Don't remove next line
yann@1535
    38
# CT_INSERT_VERSION_STRING_BELOW
yann@1345
    39
yann@2467
    40
config ELF2FLT_EXTRA_CONFIG_ARRAY
yann@1345
    41
    string
yann@1345
    42
    prompt "elf2flt extra config"
yann@1345
    43
    default ""
yann@1345
    44
    help
yann@1345
    45
      Extra flags passed onto ./configure when configuring
yann@2469
    46
      
yann@2469
    47
      You can enter multiple arguments here, and arguments can contain spaces
yann@2469
    48
      if they are properly quoted (or escaped, but prefer quotes). Eg.:
yann@2469
    49
          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
yann@1345
    50
yann@1345
    51
endif