config/libc/mingw.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 12 23:51:25 2010 +0200 (2010-09-12)
changeset 2123 ff2181adbd28
child 2444 896cb0d36c1a
permissions -rw-r--r--
cc/gcc: disable complibs if not selected

Force gcc to not link with some companion libraries when
there are not needed (because selected-out).

There is no option to tell gcc *not* to build the Graphite and/or
LTO stuff. They *will* be built if gcc finds the suitable companion
libraries. If we do not provide them, but the host has them, then
gcc *will* find them, and link with them.

Consider the following:
- host has suitable PPL and CLooG (eg. Debian Squeeze)
- user wants to build gcc>=4.4
- user de-selects GRAPHITE
- gcc will find the hosts PPL and CLooG, and will use them
- the user moves the toolchain to an older host that does
not have them (eg. Debian Lenny)
- the toolchain fails, when it was properly setup not to

So, explicitly tell gcc *not* to use unneeded companion libs.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
bartvdrmeulen@2017
     1
# mingw options
bartvdrmeulen@2017
     2
# depends on MINGW32
bartvdrmeulen@2017
     3
bartvdrmeulen@2017
     4
config LIBC_mingw
bartvdrmeulen@2017
     5
    bool
bartvdrmeulen@2017
     6
    select LIBC_SUPPORT_WIN32THREADS
bartvdrmeulen@2017
     7
    help
bartvdrmeulen@2017
     8
      The de-facto standard for Mingw distributions.
bartvdrmeulen@2017
     9
bartvdrmeulen@2017
    10
choice
bartvdrmeulen@2017
    11
    bool
bartvdrmeulen@2017
    12
    prompt "Mingw runtime version"
bartvdrmeulen@2017
    13
bartvdrmeulen@2017
    14
# Don't remove next line
bartvdrmeulen@2017
    15
# CT_INSERT_VERSION_BELOW
bartvdrmeulen@2017
    16
config MINGWRT_V_3_18
bartvdrmeulen@2017
    17
    bool
bartvdrmeulen@2017
    18
    prompt "3.18"
bartvdrmeulen@2017
    19
bartvdrmeulen@2017
    20
config MINGWRT_V_select
bartvdrmeulen@2017
    21
    bool
bartvdrmeulen@2017
    22
    prompt "Other version"
bartvdrmeulen@2017
    23
bartvdrmeulen@2017
    24
endchoice
bartvdrmeulen@2017
    25
bartvdrmeulen@2017
    26
config MINGWRT_VERSION
bartvdrmeulen@2017
    27
    string
bartvdrmeulen@2017
    28
    prompt "Mingw runtime version" if MINGWRT_V_select
bartvdrmeulen@2017
    29
# Don't remove next line
bartvdrmeulen@2017
    30
# CT_INSERT_VERSION_STRING_BELOW
bartvdrmeulen@2017
    31
    default "3.18" if MINGWRT_V_3_18
bartvdrmeulen@2017
    32
    help
bartvdrmeulen@2017
    33
      Enter the version number of the mingw runtime files to use
bartvdrmeulen@2017
    34