config/libc/mingw.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Mar 20 00:02:21 2011 +0100 (2011-03-20)
changeset 2339 730e2d63296b
child 2444 896cb0d36c1a
permissions -rw-r--r--
scripts: leave changelog in build dir, copy to install dir

Users tend to look for the build log in the current working directory,
rather than in the toolchain's installation dir. While bundling the build
log in the toolchain installation dir is nice for distribution and review,
it can be easier to have the build log readily available in the working
directory, as it is quicker to get to it.

So, the build log stays in the working directory until the toolchain is
completely and successfully built, and then a (compressed) copy is made.

Reported-by: Trevor Woerner <twoerner@gmail.com>
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