config/binutils/elf2flt.in
author Zoltan Devai <zdevai@gmail.com>
Wed Oct 28 12:03:38 2009 +0100 (2009-10-28)
branch1.5
changeset 1645 01d01185eb18
parent 1345 27fec561af53
child 1609 68f9c68e7bc9
permissions -rw-r--r--
libc/uClibc: fix building on system with recent glibc

While trying to build a toolchain with ct-ng 1.5.0,
arm-unknown-linux-uclibcgnueabi target,
I get the following error:

[INFO ] Installing C library headers
[EXTRA] Copying sources to build dir
[EXTRA] Applying configuration
[EXTRA] Building headers
[EXTRA] Installing headers
[ERROR] extra/scripts/unifdef.c:209: error: conflicting types for 'getline'
[ERROR] make[2]: *** [extra/scripts/unifdef] Error 1
[ERROR] Build failed in step 'Installing C library headers'

The following patch solves the problem.
(It's a backport of this uClibc commit:
http://git.uclibc.org/uClibc/commit/?id=49e81cada73616864b9b31df0aeb6961c30f5a6e
)

[--SNIP from another mail--]
AFAIK this is a problem since glibc 2.10.
(transplanted from 1ba79f2126df8bd89120899a58f2d0bcc2e9c771)
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
config ELF2FLT_VERSION
yann@1345
     8
    string
yann@1345
     9
yann@1345
    10
choice
yann@1345
    11
    bool
yann@1345
    12
    prompt "elf2flt version"
yann@1535
    13
# Don't remove next line
yann@1535
    14
# CT_INSERT_VERSION_BELOW
yann@1345
    15
yann@1345
    16
config ELF2FLT_CVSHEAD
yann@1345
    17
    bool
yann@1345
    18
    prompt "CVS Head"
yann@1345
    19
    help
yann@1345
    20
      Grab the latest version of elf2flt from the CVS repository
yann@1345
    21
yann@1345
    22
config ELF2FLT_CVS_SNAPSHOT
yann@1345
    23
    bool
yann@1345
    24
    prompt "CVS Snapshot"
yann@1345
    25
yann@1345
    26
endchoice
yann@1345
    27
yann@1345
    28
config ELF2FLT_CVS_SNAPSHOT_SPEC
yann@1345
    29
    string
yann@1345
    30
    depends on ELF2FLT_CVS_SNAPSHOT
yann@1345
    31
    default ""
yann@1345
    32
    prompt "CVS refspec for elf2flt"
yann@1345
    33
    help
yann@1345
    34
       What you enter here will be passed verbatim to the cvs checkout command
yann@1345
    35
       so be careful!
yann@1345
    36
yann@1345
    37
config ELF2FLT_VERSION
yann@1345
    38
    string
yann@1345
    39
    default "head" if ELF2FLT_CVSHEAD
yann@1535
    40
# Don't remove next line
yann@1535
    41
# CT_INSERT_VERSION_STRING_BELOW
yann@1345
    42
yann@1345
    43
config ELF2FLT_EXTRA_CONFIG
yann@1345
    44
    string
yann@1345
    45
    prompt "elf2flt extra config"
yann@1345
    46
    default ""
yann@1345
    47
    help
yann@1345
    48
      Extra flags passed onto ./configure when configuring
yann@1345
    49
yann@1345
    50
endif