1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

Fixing optimisation recommendation from -o3 to -o2, until we're sure we've ironed out strict aliasing problems.

Copied from Perforce
 Change: 179355
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2012-09-07 21:50:56 +01:00
parent ea0ef1688d
commit dda9c4591c

View file

@ -34,7 +34,7 @@ This will build a "hot" variety (for production) object file for use
with "mps.h". You can greatly improve performance by allowing global
optimization, for example:
cc -O3 -c mps.c (Unix/Mac OS)
cc -O2 -c mps.c (Unix/Mac OS)
cl /O2 /c mps.c (Windows)
@ -59,7 +59,7 @@ myformat.c, then you could make a file mymps.c containing
then
cc -O3 -c mymps.c (Unix/Mac OS)
cc -O2 -c mymps.c (Unix/Mac OS)
cl /O2 /c mymps.c (Windows)
This will get your format code inlined with the MPS garbage collector.