Reputation: 21
In installing LAPACK to use with C on OSX, I type "make" into the terminal and get the following:
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C INSTALL run
./testlsame
make[1]: *** [run] Segmentation fault: 11
make: *** [lapack_install] Error 2
What do these errors mean and how do I get rid them? I'm using Xcode 9.2 and just installed gfortran (maybe I did this wrong)?
Sorry for the very basic question.
Upvotes: 1
Views: 2466
Reputation: 3477
As @bnaeker correctly you have everything ready for use installed on your OSX. You do not need anything beyond specifying -framework Accelerate
and you're done.
Upvotes: 2