Skip to content

Commit a7a8426

Browse files
committed
64 bit target for Windows.
1 parent 29c48dd commit a7a8426

File tree

5 files changed

+64
-104
lines changed

5 files changed

+64
-104
lines changed

Makefile.win

+46-53
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,52 @@
22
# Makefile for native Windows version of Dire Wolf.
33
#
44
#
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.
167
#
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+
1720

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)
1827

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
2032

33+
# MinGW requires "-mthreads" option for threadsafe operation.
2134

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
2536

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
2750

28-
CC := gcc
29-
CFLAGS := -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC -Wall -Wlogical-op
30-
AR := ar
3151

3252
CFLAGS += -g
3353
# TEMP EXPERIMENT - DO NOT RELEASE
@@ -49,37 +69,10 @@ CFLAGS += -g
4969
CFLAGS += -Wsign-compare
5070
CFLAGS += -Wuninitialized
5171
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
5375
#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-
#
8376

8477

8578

@@ -109,7 +102,7 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o dem
109102
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
110103

111104
dw-icon.o : dw-icon.rc dw-icon.ico
112-
windres dw-icon.rc -o $@
105+
$(WINDRES) dw-icon.rc -o $@
113106

114107

115108
# Optimization for slow processors.
@@ -211,7 +204,7 @@ appserver : appserver.o agwlib.o dwsock.o textcolor.o dtime_now.o misc.a
211204
# UTM, USNG, MGRS conversions.
212205

213206
geotranz.a : error_string.o mgrs.o polarst.o tranmerc.o ups.o usng.o utm.o
214-
ar -cr $@ $^
207+
$(AR) -cr $@ $^
215208

216209
error_string.o : geotranz/error_string.c
217210
$(CC) $(CFLAGS) -c -o $@ $^
@@ -243,7 +236,7 @@ utm.o : geotranz/utm.c
243236
# Consider upgrading from https://www.gnu.org/software/libc/sources.html
244237

245238
regex.a : regex.o
246-
ar -cr $@ $^
239+
$(AR) -cr $@ $^
247240

248241
regex.o : regex/regex.c
249242
$(CC) $(CFLAGS) -Dbool=int -Dtrue=1 -Dfalse=0 -c -o $@ $^
@@ -254,7 +247,7 @@ regex.o : regex/regex.c
254247
# but not on Windows. Need to provide our own copy.
255248

256249
misc.a : strsep.o strtok_r.o strcasestr.o strlcpy.o strlcat.o
257-
ar -cr $@ $^
250+
$(AR) -cr $@ $^
258251

259252
strsep.o : misc/strsep.c
260253
$(CC) $(CFLAGS) -c -o $@ $^

audio_win.c

+11-10
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ static struct adev_s {
222222
*----------------------------------------------------------------*/
223223

224224

225-
static void CALLBACK in_callback (HWAVEIN handle, UINT msg, DWORD instance, DWORD param1, DWORD param2);
226-
static void CALLBACK out_callback (HWAVEOUT handle, UINT msg, DWORD instance, DWORD param1, DWORD param2);
225+
static void CALLBACK in_callback (HWAVEIN handle, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2);
226+
static void CALLBACK out_callback (HWAVEOUT handle, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2);
227227

228228
int audio_open (struct audio_s *pa)
229229
{
@@ -684,24 +684,25 @@ int audio_open (struct audio_s *pa)
684684
* Called when input audio block is ready.
685685
*/
686686

687-
static void CALLBACK in_callback (HWAVEIN handle, UINT msg, DWORD instance, DWORD param1, DWORD param2)
687+
static void CALLBACK in_callback (HWAVEIN handle, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2)
688688
{
689689

690-
int a = instance;
691-
692-
//dw_printf ("in_callback, handle = %d, a = %d\n", (int)handle, a);
690+
//dw_printf ("in_callback, handle = %p, msg = %d, instance = %I64d\n", handle, msg, instance);
693691

692+
int a = instance;
694693
assert (a >= 0 && a < MAX_ADEVS);
695694
struct adev_s *A = &(adev[a]);
696695

697-
698696
if (msg == WIM_DATA) {
699697

700698
WAVEHDR *p = (WAVEHDR*)param1;
701699

702-
p->dwUser = -1; /* needs to be unprepared. */
700+
p->dwUser = 0x5a5a5a5a; /* needs to be unprepared. */
701+
/* dwUser can be 32 or 64 bit unsigned int. */
703702
p->lpNext = NULL;
704703

704+
// dw_printf ("dwBytesRecorded = %ld\n", p->dwBytesRecorded);
705+
705706
EnterCriticalSection (&(A->in_cs));
706707

707708
if (A->in_headp == NULL) {
@@ -726,7 +727,7 @@ static void CALLBACK in_callback (HWAVEIN handle, UINT msg, DWORD instance, DWOR
726727
*/
727728

728729

729-
static void CALLBACK out_callback (HWAVEOUT handle, UINT msg, DWORD instance, DWORD param1, DWORD param2)
730+
static void CALLBACK out_callback (HWAVEOUT handle, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2)
730731
{
731732
if (msg == WOM_DONE) {
732733

@@ -807,7 +808,7 @@ int audio_get (int a)
807808

808809
p = (WAVEHDR*)(A->in_headp); /* no need to be volatile at this point */
809810

810-
if (p->dwUser == (DWORD)(-1)) {
811+
if (p->dwUser == 0x5a5a5a5a) { // dwUser can be 32 or bit unsigned.
811812
waveInUnprepareHeader(A->audio_in_handle, p, sizeof(WAVEHDR));
812813
p->dwUser = 0; /* Index for next byte. */
813814

beacon.c

-19
Original file line numberDiff line numberDiff line change
@@ -59,25 +59,6 @@
5959
#include "mheard.h"
6060

6161

62-
#if __WIN32__
63-
64-
/*
65-
* Windows doesn't have localtime_r.
66-
* It should have the equivalent localtime_s, with opposite parameter
67-
* order, but I get undefined reference when trying to use it.
68-
*/
69-
70-
struct tm *localtime_r(time_t *clock, struct tm *res)
71-
{
72-
struct tm *tm;
73-
74-
tm = localtime (clock);
75-
memcpy (res, tm, sizeof(struct tm));
76-
return (res);
77-
}
78-
79-
#endif
80-
8162

8263
/*
8364
* Save pointers to configuration settings.

direwolf.h

+7-3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#define _WIN32_WINNT 0x0501 /* Minimum OS version is XP. */
2828
#define WINVER 0x0501 /* Minimum OS version is XP. */
2929

30+
#include <winsock2.h>
3031
#include <windows.h>
3132

3233
#endif
@@ -109,11 +110,14 @@
109110

110111

111112
#if __WIN32__
113+
112114
#define PTW32_STATIC_LIB
113115
//#include "pthreads/pthread.h"
114-
#define gmtime_r( _clock, _result ) \
115-
( *(_result) = *gmtime( (_clock) ), \
116-
(_result) )
116+
117+
// This enables definitions of localtime_r and gmtime_r in system time.h.
118+
//#define _POSIX_THREAD_SAFE_FUNCTIONS 1
119+
#define _POSIX_C_SOURCE 1
120+
117121
#else
118122
#include <pthread.h>
119123
#endif

dtime_now.c

-19
Original file line numberDiff line numberDiff line change
@@ -84,25 +84,6 @@ double dtime_now (void)
8484
}
8585

8686

87-
#if __WIN32__
88-
89-
/*
90-
* Windows doesn't have localtime_r.
91-
* It should have the equivalent localtime_s, with opposite parameter
92-
* order, but I get undefined reference when trying to use it.
93-
*/
94-
95-
static struct tm *localtime_r(time_t *clock, struct tm *res)
96-
{
97-
struct tm *tm;
98-
99-
tm = localtime (clock);
100-
memcpy (res, tm, sizeof(struct tm));
101-
return (res);
102-
}
103-
104-
#endif
105-
10687

10788
/*------------------------------------------------------------------
10889
*

0 commit comments

Comments
 (0)