2
2
# Makefile for native Windows version of Dire Wolf.
3
3
#
4
4
#
5
- # This is built in the Cygwin environment but with the
6
- # compiler from http://www.mingw.org/ so there is no
7
- # dependency on extra DLLs.
8
- #
9
- # The MinGW/bin directory must be in the PATH for the
10
- # compiler. e.g. export PATH=/cygdrive/c/MinGW/bin:$PATH
11
- #
12
- # Failure to have the path set correctly will result in the
13
- # obscure message: Makefile.win:... recipe for target ... failed.
14
- #
15
- # Type "which gcc" to make sure you are getting the right one!
5
+ # This is built in the Cygwin environment with the MinGW compiler.
6
+ # MinGW is a special version of gcc that generates native Windows executables.
16
7
#
8
+ # A minimum of Windows XP is required due to some of the system
9
+ # features being used. XP requires a Pentium processor or later.
10
+ # The DSP filters can be sped up considerably with the SSE instructions.
11
+ # The SSE instructions were introduced in 1999 with the Pentium III series.
12
+ # SSE2 instructions, added in 2000, with the Pentium 4, don't seem to offer any advantage.
13
+
14
+
15
+
16
+ all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets atest ttcalc kissutil
17
+ # tnctest tnctest-issue-132
18
+
19
+
17
20
21
+ # October 2019, version 1.6: 64 bit target for Windows. It runs twice as fast!
22
+ # Originally I installed MinGW outside of Cygwin and added location to PATH in .bash_profile.
23
+ # Install these two Cygwin packages so the compiler is in /usr/bin
24
+ # and no special PATH is required.
25
+ # mingw64-x86_64-gcc-core (7.4.0-1)
26
+ # mingw64-x86_64-gcc-g++ (7.4.0-1)
18
27
19
- all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets atest ttcalc tnctest tnctest-issue-132 kissutil
28
+ CC ?= x86_64-w64-mingw32-gcc
29
+ CXX ?= x86_64-w64-mingw32-g++
30
+ AR ?= x86_64-w64-mingw32-ar
31
+ WINDRES ?= x86_64-w64-mingw32-windres
20
32
33
+ # MinGW requires "-mthreads" option for threadsafe operation.
21
34
22
- # People say we need -mthreads option for threads to work properly.
23
- # They also say it creates a dependency on mingwm10.dll but I'm not seeing that.
24
- # Maybe that is for pthreads. We are using the Windows threads.
35
+ CFLAGS := -Ofast -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC -Wall -Wlogical-op
25
36
26
- # -Ofast was added in gcc 4.6 which was the MinGW version back in 2012.
37
+ # For a 32 bit target, install these Cygwin packages.
38
+ # mingw64-i686gcc-core (7.4.0-1)
39
+ # mingw64-i686gcc-g++ (7.4.0-1)
40
+ # i686 corresponds to Pentium II.
41
+ # We need to add Pentium III and SSE instructions to speed things up.
42
+ # Pentium 4 and SSE2 offers no advantage so no reason to bump up minimum CPU requirement.
43
+ # Code for the 64 bit target runs about twice as fast, so use that if possible.
44
+
45
+ #CC = i686-w64-mingw32-gcc
46
+ #CXX = i686-w64-mingw32-g++
47
+ #AR = i686-w64-mingw32-ar
48
+ #WINDRES = i686-w64-mingw32-windres
49
+ #CFLAGS += -march=pentium3 -msse
27
50
28
- CC := gcc
29
- CFLAGS := -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC -Wall -Wlogical-op
30
- AR := ar
31
51
32
52
CFLAGS += -g
33
53
# TEMP EXPERIMENT - DO NOT RELEASE
@@ -49,37 +69,10 @@ CFLAGS += -g
49
69
CFLAGS += -Wsign-compare
50
70
CFLAGS += -Wuninitialized
51
71
CFLAGS += -Wold-style-declaration
52
- # CFLAGS += -fdelete-null-pointer-checks -Wnull-dereference ---not recognized
72
+ CFLAGS += -Wnull-dereference
73
+ CFLAGS += -fdelete-null-pointer-checks
74
+ #CFLAGS += -Wmissing-prototypes
53
75
#CFLAGS += -Wold-style-definition
54
- #-Wmissing-prototypes
55
-
56
- #
57
- # Let's see impact of various optimization levels.
58
- # Benchmark results with MinGW gcc version 4.6.2.
59
- #
60
- # seconds options, comments
61
- # ------ -----------------
62
- # 119.8 -O2 Used for version 0.8
63
- # 92.1 -O3
64
- # 88.7 -Ofast (should be same as -O3 -ffastmath)
65
- # 87.5 -Ofast -march=pentium
66
- # 74.1 -Ofast -msse
67
- # 72.2 -Ofast -march=pentium -msse
68
- # 62.0 -Ofast -march=pentium3 (this implies -msse)
69
- # 61.9 -Ofast -march=pentium3 -msse
70
- #
71
- # A minimum of Windows XP is required due to some of the system
72
- # features being used. XP requires a Pentium processor or later.
73
- # The DSP filters can be sped up considerably with the SSE instructions.
74
- # The SSE instructions were introduced in 1999 with the
75
- # Pentium III series.
76
- # SSE2 instructions, added in 2000, don't seem to offer any advantage.
77
- #
78
- # For version 0.9, a Pentium 3 or equivalent is now the minimum required
79
- # for the prebuilt Windows distribution.
80
- # If you insist on using a computer from the previous century,
81
- # you can compile this yourself with different options.
82
- #
83
76
84
77
85
78
@@ -109,7 +102,7 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o dem
109
102
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
110
103
111
104
dw-icon.o : dw-icon.rc dw-icon.ico
112
- windres dw-icon.rc -o $@
105
+ $(WINDRES) dw-icon.rc -o $@
113
106
114
107
115
108
# Optimization for slow processors.
@@ -211,7 +204,7 @@ appserver : appserver.o agwlib.o dwsock.o textcolor.o dtime_now.o misc.a
211
204
# UTM, USNG, MGRS conversions.
212
205
213
206
geotranz.a : error_string.o mgrs.o polarst.o tranmerc.o ups.o usng.o utm.o
214
- ar -cr $@ $^
207
+ $(AR) -cr $@ $^
215
208
216
209
error_string.o : geotranz/error_string.c
217
210
$(CC) $(CFLAGS) -c -o $@ $^
@@ -243,7 +236,7 @@ utm.o : geotranz/utm.c
243
236
# Consider upgrading from https://www.gnu.org/software/libc/sources.html
244
237
245
238
regex.a : regex.o
246
- ar -cr $@ $^
239
+ $(AR) -cr $@ $^
247
240
248
241
regex.o : regex/regex.c
249
242
$(CC) $(CFLAGS) -Dbool=int -Dtrue=1 -Dfalse=0 -c -o $@ $^
@@ -254,7 +247,7 @@ regex.o : regex/regex.c
254
247
# but not on Windows. Need to provide our own copy.
255
248
256
249
misc.a : strsep.o strtok_r.o strcasestr.o strlcpy.o strlcat.o
257
- ar -cr $@ $^
250
+ $(AR) -cr $@ $^
258
251
259
252
strsep.o : misc/strsep.c
260
253
$(CC) $(CFLAGS) -c -o $@ $^
0 commit comments