-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
79 lines (47 loc) · 1.76 KB
/
README
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
XCSoar README
=============
XCSoar is a tactical glide computer for the Pocket PC operating
system.
This file is aimed at developers. Users should read the manual which
can be found on the XCSoar home page (http://www.xcsoar.org/).
Getting the source
------------------
The XCSoar source code is managed with git (http://git-scm.com/). It
can be downloaded with the following command:
git clone git://xcsoar.git.sourceforge.net/gitroot/xcsoar/xcsoar
To update your repository, type:
git pull
For more information, please refer to the git documentation.
Compiling from source
---------------------
To compile from source, you need:
- GNU make
- GNU compiler collection (gcc)
- rsvg (http://librsvg.sourceforge.net/)
- ImageMagick (http://www.imagemagick.org/)
- xsltproc (http://xmlsoft.org/XSLT/xsltproc2.html)
To cross-compile to (desktop) Windows, you need the mingw32 version of
gcc:
http://www.mingw.org/
For Pocket PC / Windows CE / Windows Mobile, you need mingw32ce:
http://cegcc.sourceforge.net/
http://sourceforge.net/projects/cegcc/files/cegcc/0.59.1/mingw32ce-0.59.1.tar.bz2/download
To compile, run:
make TARGET=PC
Supported targets:
PC: desktop Windows
PPC2000, PPC2003: Pocket PC (for PPC2002 devices, use PPC2000 target)
WM5: Windows Mobile 5.0 and later
PPC2003X: Pocket PC 2003 with XScale CPU
ALTAIR: Triadis Altair
WINE: WineLib (experimental)
UNIX: Linux and others (work in progress)
ANDROID: Android OS (work in progress)
Submitting patches
------------------
Submit patches to the XCSoar developer mailing list
- patches should be self-contained
- patches should be self-documenting (add a good description on what
is changed, and why you are changing it)
- write one patch for one change