CFLAGS for Xenodes?
James
6 Replies
CFLAGS='-fomit-frame-pointer -mfpmath=sse -msse3 -O2 -m32'
James
@zunzun:
CFLAGS='-fomit-frame-pointer -mfpmath=sse -msse3 -O2 -m32'
Looks like SSE3 is giving seg faults. Trying:
export CFLAGS='-fomit-frame-pointer -momit-leaf-frame-pointer -mtune=pentium4 -ffast-math –mfpmath=sse -funroll-loops -O2 -m32 -fexpensive-optimizations'
I'm not debugging, so I'm trying -momit-leaf-frame-pointer.
James
James
@zunzun:
CFLAGS='-fomit-frame-pointer -momit-leaf-frame-pointer -mtune=pentium4 -ffast-math –mfpmath=sse -funroll-loops -O2 -m32 -fexpensive-optimizations
You probably know what you're doing, but any mention of -ffast-math needs the health warning of RT(F)M before using, unless you don't care about loss of precision in floating point operations.
Having said that it gives some audio software a more natural sound if you have freaky enough hearing to tell the difference.