]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/README
sigrok-cross-mingw: README: Drop 'unzip' requirement.
[sigrok-util.git] / cross-compile / mingw / README
CommitLineData
91d4c754
UH
1-------------------------------------------------------------------------------
2README
3-------------------------------------------------------------------------------
4
5This is a small script for cross-compiling sigrok and its dependencies
404eb356 6for MinGW-w64/Windows systems.
91d4c754
UH
7
8
9Status
10------
11
6e15e874 12Working.
91d4c754
UH
13
14
15Requirements
16------------
17
18 - bash
19 - gcc
20 - make
5b7f0ad2 21 - cmake
91d4c754 22 - git
5b7f0ad2 23 - wget
37d3fad3 24 - p7zip
5b7f0ad2 25 - pkg-config (>= 0.22)
73740f2d 26 - sdcc (needed for building the fx2lafw firmware)
5b7f0ad2 27 - nsis
404eb356 28 - MXE (*-w64-* targets, the *-pc-* targets are not supported)
91d4c754
UH
29
30
31MXE setup
32---------
33
404eb356 34First, get the MXE cross-compile environment for MinGW-w64/Windows:
91d4c754
UH
35
36 $ cd $HOME
37 $ git clone https://github.com/mxe/mxe.git mxe-git
38 $ cd mxe-git
404eb356
UH
39
40For now we need to build gcc and winpthreads in two steps. First:
41
42 $ make MXE_TARGETS=i686-w64-mingw32.static gcc winpthreads
43
44In src/gcc.mk change "--enable-threads=win32" to "--enable-threads=posix".
45
46Then build gcc again:
47
48 $ make MXE_TARGETS=i686-w64-mingw32.static gcc
49
50We now have a system that supports C++11 std::thread. Now build the rest:
51
a2579d20 52 $ make MXE_TARGETS=i686-w64-mingw32.static glib libzip libusb1 libftdi1 \
d1cd735b 53 glibmm qt boost check
91d4c754
UH
54
55This will take a while.
56
57See http://mxe.cc for details on MXE.
58
59
60Building
61--------
62
63 $ ./sigrok-cross-mingw
64
65Per default it expects MXE in:
66
67 $HOME/mxe-git
68
69Per default it will install the cross-compiled packages in:
70
71 $HOME/sr_mingw
72
73Please edit the script if you want to change any settings.
74