I’ve been trying unsuccessfully to get Apache installed on my media box, in order to continue development of NeoMPC. I’d been getting an error message telling me that the build environment had changed, and all attempts at getting it compiled were failing.
Tonight I found the problem, in /etc/make.conf:
CFLAGS="-O2 -march=i686 -msse -mmmx -mfpmath=sse -pipe -fomit-frame-pointer"
You probably can’t tell what’s wrong with that line, even if you’re a seasoned Gentoo Linux user. Here is the correct line:
CFLAGS="-O2 -march=i686 -msse -mmmx -mfpmath=sse -pipe -fomit-frame-pointer"
Spot the difference? Look carefully…
Continue reading…