blob: 9764bf2ed82d3a841ec8abe79fb0b68f3aa4a023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
\input texinfo @c -*- Texinfo -*-
@c %**start of header
@setfilename Building.mingw.info
@include base/article.texi
@include building/command.texi
@paragraphindent none
@set BG-platform @value{OS-mingw}
@c %**end of header
@majorheading Guide to Building @value{HB-title} on @value{BG-platform}
@contents
@sp 1
@include building/chapter.introduction.texi
@c %**-------------------------------------------------------------------------
@anchor{prerequisites}
@chapter Prerequisites
The following are the recommended specifications for building on @value{OS-mingw}; but is not necessarily the only configuration that is possible:
@itemize @bullet
@item Intel 32-bit or 64-bit hardware
@item @value{OS-mingw} on Fedora 17+, Ubuntu 12+ or Debian using gcc 4.6+
@item yasm 1.2.x (for i386 or x86_64 architectures)
@end itemize
@include building/prerequisites.bundled.texi
@quotation Note
You must set the --cross flag with configure to cross compile with windows.
See the Example below. Note that the cross compiler name varies between distributions.
The following is an example:
@end quotation
@example
../configure --cross=x86_64-w64-mingw32
@end example
@include building/prerequisites.common.texi
@c %**-------------------------------------------------------------------------
@include building/chapter.quickstart.texi
@anchor{overview}
@chapter Overview
@value{OS-mingw} builds are performed from a @b{terminal}. There is no support for building from any IDEs.
@c %**-------------------------------------------------------------------------
@include building/chapter.via.terminal.texi
@include building/chapter.troubleshooting.texi
@include building/appendix.repo.texi
|