Gcc mcpu is deprecated warning
Sunday, December 7th, 2008 - 4:15 am - Linux
Hey folks… If you are experiencing the following error:
`-mcpu=’ is deprecated. Use `-mtune=’ or ‘-march=’ instead.
I would do the following to avoid it:
CFLAGS=”-mtune=i686″ CXX=gcc CXXFLAGS=”-mtune=i686″ ./configure ….
