Date: Tue, 23 May 2000 14:03:44 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Dieter Buerssner cc: djgpp AT delorie DOT com Subject: Re: windows version of Crafty In-Reply-To: <8gduin.3vs5eg7.0@buerssner-17104.user.cis.dfn.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 23 May 2000, Dieter Buerssner wrote: > >What about these? > > -O3 -mpentium -ffast-math -fomit-frame-pointer > > I tried those (without -ffast-math, which is not useful for a chess > program.) The -O3 will slow down crafty, due to excess inlining of > functions. Right. In my experience, compiling chess programs with -O3 will almost invariably slow them down, because their main loop tends to be very large. -O3 is for small, localized loops and functions.