From b81d232a9bae21ef1bc896f106a926b66dcae869 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 11 Jul 2010 21:36:20 +0200 Subject: kernel: add mingw Add the option to build a cross-compiler for kernel type 'mingw'. The resulting cross-compiler can be used to build applications on a Linux host that can be run on a Windows target. Compiler is build using the mingwrt and w32-api packages aviable from the MinGW project (http://sourceforge.net/projects/mingw). The windows headers (w32-api package) are extracting with the kernel_headers step The libraries and other headers from both packages are build and installed in the various steps of libc Signed-off-by: Bart vdr Meulen [yann.morin.1998@anciens.enib.fr: fix kernel headers comment, don't "return 0"] Signed-off-by: "Yann E. MORIN" --- config/kernel/mingw32.in | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 config/kernel/mingw32.in (limited to 'config/kernel') diff --git a/config/kernel/mingw32.in b/config/kernel/mingw32.in new file mode 100644 index 00000000..1496d052 --- /dev/null +++ b/config/kernel/mingw32.in @@ -0,0 +1,32 @@ +# mingw32 config options + +config KERNEL_mingw32 + select MINGW32 + help + Build a toolchain targeting systems running Windows as host + +choice + bool + prompt "Windows api version" + +# Don't remove next line +# CT_INSERT_VERSION_BELOW +config W32API_V_3_14 + bool + prompt "3.14" + +config W32API_V_select + bool + prompt "Other version" + +endchoice + +config W32API_VERSION + string + prompt "W32 api version" if W32API_V_select +# Don't remove next line +# CT_INSERT_VERSION_STRING_BELOW + default "3.14" if W32API_V_3_14 + help + Enter the version number of the windows api files to use + -- cgit v1.2.3