config/companion_tools.in
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:47:16 2010 +0200 (2010-07-29)
changeset 2045 fdaa6c7f6dea
parent 1729 dd72fa745318
child 2285 7d1e018167b5
permissions -rw-r--r--
cc/gcc: add option to compile against static libstdc++, for gcc-4.4 and newer

Idea and know-how taken from CodeSourcery build script.

Normal build:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb77f3000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb76e8000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb75a1000)
libm.so.6 => /lib/i686/cmov/libm.so.6 (0xb757a000)
/lib/ld-linux.so.2 (0xb77f4000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb755c000)

CC_STATIC_LIBSTDCXX=y:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb7843000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb76e6000)
/lib/ld-linux.so.2 (0xb7844000)

I made CC_STATIC_LIBSTDCXX default=y since I think
it is always desirable.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
richard@1727
     1
# Companion tools config options
richard@1727
     2
richard@1727
     3
if EXPERIMENTAL
richard@1727
     4
richard@1727
     5
menu "Companion tools"
richard@1727
     6
richard@1727
     7
comment "READ HELP before you say 'Y' below !!!"
richard@1727
     8
config COMP_TOOLS
richard@1727
     9
    bool
richard@1727
    10
    prompt "Build some companion tools"
richard@1727
    11
    help
richard@1727
    12
      Crosstool-NG relies on some external tools to be recent enough, namely:
richard@1728
    13
        m4 >= 1.4.12
richard@1727
    14
        autoconf >= 2.63
richard@1729
    15
        automake >= 1.10.2
richard@1730
    16
        libtool >= 2.2.4
richard@1727
    17
      
richard@1727
    18
      If your system has older versions, we can build them for you,
richard@1727
    19
      but you are strongly encouraged to update your system instead!
richard@1727
    20
richard@1727
    21
if COMP_TOOLS
richard@1727
    22
richard@1728
    23
config COMP_TOOLS_m4
richard@1728
    24
    bool
richard@1728
    25
    prompt "m4"
richard@1728
    26
richard@1727
    27
config COMP_TOOLS_autoconf
richard@1727
    28
    bool
richard@1727
    29
    prompt "autoconf"
richard@1727
    30
richard@1729
    31
config COMP_TOOLS_automake
richard@1729
    32
    bool
richard@1729
    33
    prompt "automake"
richard@1729
    34
richard@1730
    35
config COMP_TOOLS_libtool
richard@1730
    36
    bool
richard@1730
    37
    prompt "libtool"
richard@1730
    38
richard@1727
    39
endif
richard@1727
    40
richard@1727
    41
endmenu
richard@1727
    42
richard@1727
    43
endif