Hi Fons,
On 10/18/2011 09:06 PM, Fons Adriaensen wrote:
Hello all,
New releases on <http://kokkinizita.linuxaudio.org:/linuxaudio/downloads>:
Many thanks for these and your dedication.
[..]
* Should compile and work on OSX. The Makefile is
untested.
g++ on OSX does not have a '-march=native' option. (error: bad value
(native) for -march)
One would need to edit the Makefile to make it compile on OSX since you
always append it with CPPFLAGS += -march=native.
I suggest to change that line to
CXXFLAGS=-march=native -O3
Thus CXXFLAGS can be overridden on the make command-line. Furthermore
optimization flags should not be set as preprocessor parameters (CPPFLAGS).
Cheers!
robin