Als Antwort auf:/In reply to: Re: Building your own Crafty geschrieben von:/posted by: Bryan Hofmann at 13 April 2004 13:12:49:
Do you have any figure about what kind of speed-up one could expect from doing this (not just with Crafty)?Just as a FYI you can greatly reduce your batch file and achive a faster crafty by using the following;
gcc -c -DNT_i386 -O3 crafty.c
gcc -c -DNT_i386 -O3 egtb.cpp
gcc -o crafty.exe *.o
By doing this you compile the crafty.c as one large object which allows for better optimization.
Thanks,
Fabien.