From: H.G.Muller Date: Mon, 28 Apr 2014 11:38:57 +0000 (+0200) Subject: Alter Makefile to force 32-bit compile X-Git-Url: http://winboard.nl/cgi-bin?p=capablanca.git;a=commitdiff_plain Alter Makefile to force 32-bit compile The code is not 64-bit compliant, and crashes when run as 64-bit compile. The first such crash already occurs when initializing, and could be traced to a vasprintf in fopen_p. Presumably the list of variable arguments cannot handle it that pointers and ints are not the same size. Rather than trying to fix this (and leaving an unknown number of potential other problems), we stick to 32-bit. --- diff --git a/lasker-2.2.3/src/Makefile.in b/lasker-2.2.3/src/Makefile.in index 61a1292..4a96ee3 100644 --- a/lasker-2.2.3/src/Makefile.in +++ b/lasker-2.2.3/src/Makefile.in @@ -37,12 +37,12 @@ DYNEXP=-rdynamic ## ## Binaries and Options to use ## -CFLAGS += $(PICFLAG) -Wall @CFLAGS@ -DTDB_STANDALONE ${CHESSD_CFLAGS} -I${srcdir} -I${srcdir}/tdb +CFLAGS += $(PICFLAG) -m32 -Wall @CFLAGS@ -DTDB_STANDALONE ${CHESSD_CFLAGS} -I${srcdir} -I${srcdir}/tdb INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ LIBS = @LIBS@ -lm -LNFLAGS = @LDFLAGS@ ${LIBS} +LNFLAGS = @LDFLAGS@ -m32 ${LIBS} CHESSDDIR = ${PREFIX}/chessd TDB_SRC = tdb/tdb.c tdb/spinlock.c @@ -73,13 +73,13 @@ chessd: .autoheaders ficsmain.o $(CC) $(DYNEXP) $(CFLAGS) $(LNFLAGS) -o chessd ficsmain.o $(LIBS) chessd.so: .autoheaders $(OBJS) - $(CC) -shared -o chessd.so $(OBJS) + $(CC) -m32 -shared -o chessd.so $(OBJS) chessd_addplayer: .autoheaders fics_addplayer.o $(OBJS) - $(CC) fics_addplayer.o $(CFLAGS) $(OBJS) $(LNFLAGS) -o chessd_addplayer $(LIBS) + $(CC) -m32 fics_addplayer.o $(CFLAGS) $(OBJS) $(LNFLAGS) -o chessd_addplayer $(LIBS) makerank: .autoheaders makerank.o - $(CC) makerank.o $(OBJS) -o makerank $(LIBS) + $(CC) -m32 makerank.o $(OBJS) -o makerank $(LIBS) vers.c: ${VERSION}