aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-15 21:31:54 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-19 19:24:11 +0200
commit30c367bfc1408acc79756a642105ea14c6281fc7 (patch)
treec1ca861be010194877f2ec945c028a347e8880c0
parente5565a7a55492324453d52159a6c471a3b3a6abf (diff)
downloadbusybox-w32-30c367bfc1408acc79756a642105ea14c6281fc7.tar.gz
busybox-w32-30c367bfc1408acc79756a642105ea14c6281fc7.tar.bz2
busybox-w32-30c367bfc1408acc79756a642105ea14c6281fc7.zip
Add README.win32
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-rw-r--r--README.win3238
1 files changed, 38 insertions, 0 deletions
diff --git a/README.win32 b/README.win32
new file mode 100644
index 000000000..73e37cc6c
--- /dev/null
+++ b/README.win32
@@ -0,0 +1,38 @@
1Status
2======
3
4I would consider this port experimental. Things may work, or may not.
5Things may never work because of huge differences between Linux and
6Windows. Or things may work in future, if you report the faults to
7busybox@busybox.net, especially with patches.
8
9pclouds@gmail.com
1015/04/2010
11
12Building
13========
14
15You need MinGW compiler and a POSIX environment (so that "make
16menuconfig" works). I cross compile from Linux, but MSYS or Cygwin
17should be OK.
18
19In order to compile the WinGW port you need to:
20
21Start with "make menuconfig":
22
23 - Select target platform as "MS Windows"
24 - If you cross compile, set
25 Busybox Settings -> Build Options -> Cross Compiler Prefix
26 - Select whatever applets/features you like
27
28Do "make"
29
30Attempts to make it work with MS Visual Studio are appreciated. You
31can start with porting kconfig ;-)
32
33Limitation
34==========
35
36 - Use forward slashes. Backslash support is very limited.
37 - Do not do wild things with Windows drive notation, like archiving a
38 whole drive. If you want it, tell us, preferably with patches.