Geschrieben von: / Posted by: Lance Perkins at 05 March 2004 19:48:37:
Played many blitz/bullet games in debug (-Zi) and non-debug modes, and seems stable.
untar/unzip the source
cd src
copy ..\config.h.in config.h
notepad config.h
add:
#define VERSION "0.8.7"
notepad amy.h
add:
"typedef unsigned __int64 hash_t;"
in same place as:
"typedef unsigned __int64 ran_t;"
notepad tbindex.cpp
replace:
extern "C" int TB_FASTCALL L_TbtProbeTable
with:
extern "C" int L_TbtProbeTable
notepad random.c
replace:
double result = (double) Random64();
with:
double result = (double) (__int64) Random64();
del *.obj
cl -Ox -I. -c bitboard.c bookup.c commands.c dbase.c eco.c hashtable.c
cl -Ox -I. -c init.c learn.c main.c mates.c movedata.c next.c pgn.c
cl -Ox -I. -c probe.c random.c recog.c score.c search.c search_io.c
cl -Ox -I. -c state_machine.c swap.c time_ctl.c utils.c version.c
cl -Ox -c mytb.cpp
cl -Feamy.exe *.obj