config/kernel/mingw32.in
author Bart vdr Meulen <bartvdrmeulen@gmail.com>
Sun Jul 11 21:37:29 2010 +0200 (2010-07-11)
changeset 2019 235d1aa16e00
child 2027 38cc05a621f0
permissions -rw-r--r--
samples: add Linux -> Mingw32 sample

Sample to build compiler targetting mingw32 target systems

Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
---
samples/i686-pc-mingw32/crosstool.config | 302 +++++++++++++++++++++++++++++++
samples/i686-pc-mingw32/reported.by | 3
2 files changed, 305 insertions(+)
create mode 100644 samples/i686-pc-mingw32/crosstool.config
create mode 100644 samples/i686-pc-mingw32/reported.by
     1 # mingw32 config options
     2 
     3 config KERNEL_mingw32
     4     select MINGW32
     5     help
     6       Build a toolchain targeting systems running Windows as host
     7 
     8 choice
     9     bool
    10     prompt "Windows api version"
    11 
    12 # Don't remove next line
    13 # CT_INSERT_VERSION_BELOW
    14 config W32API_V_3_14
    15     bool
    16     prompt "3.14"
    17 
    18 config W32API_V_select
    19     bool
    20     prompt "Other version"
    21 
    22 endchoice
    23 
    24 config W32API_VERSION
    25     string
    26     prompt "W32 api version" if W32API_V_select
    27 # Don't remove next line
    28 # CT_INSERT_VERSION_STRING_BELOW
    29     default "3.14" if W32API_V_3_14
    30     help
    31       Enter the version number of the windows api files to use
    32