Confused_physicist
Confused_physicist

Reputation: 21

Installing LAPACK on OSX

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

Answers (1)

Kaveh Vahedipour
Kaveh Vahedipour

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

Related Questions