From: Stéphane Nicolet Date: Tue, 28 Nov 2017 15:50:31 +0000 (+0100) Subject: Compile without exceptions X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=ccd6bad51299cf00e730b2c7db5379bd9720e27c;hp=ccd6bad51299cf00e730b2c7db5379bd9720e27c Compile without exceptions Add the -fno-exceptions flag to the Makefile to avoid the unecessary exceptions support in the executable (we do not use any exception in Stockfish at the moment). This change gives a 9.2% reduction in size for the executable binary. Before : executable size = 376956 bytes After: executable size = 347652 bytes No functional change. ---