config/companion_tools.in
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Oct 07 22:37:06 2010 +0200 (2010-10-07)
changeset 2138 2242d87c5404
parent 1729 dd72fa745318
child 2285 7d1e018167b5
permissions -rw-r--r--
scripts: always create lib32 and lib64 symlinks

Unconditionally create the lib32 -> lib/ and lib64 -> lib/ symlinks.

This is reportedly a fix to build a toolchain for a 32-bit target on
a 'pure' 64-bit host (eg. on Fedora FC12, host libs are in lib64/,
and there is no lib -> lib64 symlink, as we can see on other distors,
as Debian). As gcc only puts static host lib in lib64/ (along with
target files in subdirs), we can safely create the symlinks.

Also note that the symlinks are summarily removed at the end
of the build.

Signed-off-by: Anthony Foiani <anthony.foiani@gmail.com>
[Yann E. MORIN: fix a comment, rephrase the commit log]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
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