Current benchmarks can be found here
- autotools
- cmake
- g++
The package can be compiled by running
autoreconf -vif
mkdir build && cd build
../configure
make
In order to compile against Apple's Accelerate framework, the library path needs to be supplied to the configure script, e.g.:
mkdir build && cd build
../configure CPPFLAGS=-I/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Headers
make