Tuesday, December 13, 2005

MySQL and icc solved

Thanks to Lenz Grimmer on the MySQL forums. His solution was to use the following variables:

CC=icc \
CFLAGS="-O3 -unroll2 -ip -mp -restrict" \
CXX=icpc \
CXXFLAGS="-O3 -unroll2 -ip -mp -restrict" \
LDFLAGS="-static-libcxa -i-static"

2 comments:

Noons said...

icc? That's the intel OEM optimizing C compiler, isn't it?

Jeff Hunter said...

iccYup, that's the one.