Hi, 2011/11/15 Armin Rigo <[email protected]>: > On Tue, Nov 15, 2011 at 15:54, Ian Ozsvald <[email protected]> wrote: >> ShedSkin (from memory) >> requests fast math and a few other things in the generated Makefile. > > Ah, it is cheating that way. Indeed, I didn't try to play with gcc > options; I just used -O2 (or -O3, which made no difference).
FYI, here is the default FLAGS file for shedskin: CC=g++ CCFLAGS=-O2 -march=native -Wno-deprecated $(CPPFLAGS) LFLAGS=-lgc -lpcre $(LDFLAGS) But of course you can change the compiler and play with its flags to improve performance. Best regards, -- Jérémie _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
