Yann Diorcet 3d01e9f275 libc/mingw: replace mingw32 with generic mingw
Replace the 32-bit-only mingw32 with mingw-w64 that is capable
of building toolchains for both 32-bit and 64-bit Windows.

kernel/mingw: replace mingw32 with generic Windows
kernel/windows: New windows kernel supporting 32 and 64 bit arch
libc/mingw: Remove old options
patches: Remove old mingw libc options' patches

Signed-off-by: "Yann Diorcet" <diorcet.yann@gmail.com>
[yann.morin.1998@free.fr: array var in libc/mingw.sh, typos]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <b045ac08fc9eac2e5ee3.1352898499@blackmint>
Patchwork-Id: 198901
2012-11-14 14:05:49 +01:00

105 lines
2.1 KiB
Plaintext

# glibc options
## depends on ! WINDOWS && ! BARE_METAL && ARCH_USE_MMU
##
## select LIBC_SUPPORT_NPTL
##
## help The de-facto standard for Linux distributions.
## help Feature-rich, but large... Most usefull for desktop-like systems.
choice
bool
prompt "glibc version"
# Don't remove next line
# CT_INSERT_VERSION_BELOW
config LIBC_GLIBC_V_2_14_1
bool
prompt "2.14.1"
config LIBC_GLIBC_V_2_14
bool
prompt "2.14"
config LIBC_GLIBC_V_2_13
bool
prompt "2.13"
config LIBC_GLIBC_V_2_12_2
bool
prompt "2.12.2"
config LIBC_GLIBC_V_2_12_1
bool
prompt "2.12.1"
config LIBC_GLIBC_V_2_11_1
bool
prompt "2.11.1"
config LIBC_GLIBC_V_2_11
bool
prompt "2.11"
config LIBC_GLIBC_V_2_10_1
bool
prompt "2.10.1"
select LIBC_GLIBC_USE_PORTS
config LIBC_GLIBC_V_2_9
bool
prompt "2.9"
config LIBC_GLIBC_V_2_8
bool
prompt "2.8"
config LIBC_GLIBC_V_2_7
bool
prompt "2.7 (OBSOLETE)"
depends on OBSOLETE
config LIBC_GLIBC_V_2_6_1
bool
prompt "2.6.1 (OBSOLETE)"
depends on OBSOLETE
config LIBC_GLIBC_V_2_6
bool
prompt "2.6 (OBSOLETE)"
depends on OBSOLETE
config LIBC_GLIBC_V_2_5_1
bool
prompt "2.5.1 (OBSOLETE)"
depends on OBSOLETE
select LIBC_SUPPORT_LINUXTHREADS
config LIBC_GLIBC_V_2_5
bool
prompt "2.5 (OBSOLETE)"
depends on OBSOLETE
select LIBC_SUPPORT_LINUXTHREADS
endchoice
config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
default "2.14.1" if LIBC_GLIBC_V_2_14_1
default "2.14" if LIBC_GLIBC_V_2_14
default "2.13" if LIBC_GLIBC_V_2_13
default "2.12.2" if LIBC_GLIBC_V_2_12_2
default "2.12.1" if LIBC_GLIBC_V_2_12_1
default "2.11.1" if LIBC_GLIBC_V_2_11_1
default "2.11" if LIBC_GLIBC_V_2_11
default "2.10.1" if LIBC_GLIBC_V_2_10_1
default "2.9" if LIBC_GLIBC_V_2_9
default "2.8" if LIBC_GLIBC_V_2_8
default "2.7" if LIBC_GLIBC_V_2_7
default "2.6.1" if LIBC_GLIBC_V_2_6_1
default "2.6" if LIBC_GLIBC_V_2_6
default "2.5.1" if LIBC_GLIBC_V_2_5_1
default "2.5" if LIBC_GLIBC_V_2_5