- Code: Select all
gfortran -g -framework Accelerate test.f
it works.
However, I have many source code files which I want to compile through Makefile. When I modify my Makefile by adding:
- Code: Select all
LDFLAGS= -framework Accelerate
(Not sure it is the right way but that's how someone seemed to do it) I get the error that the lapack function used inside is unrecognized.
Can someone tell me what modification to do in the makefile?
Here is the error I get:
- Code: Select all
gfortran -g test.o -o a.out
Undefined symbols for architecture x86_64:
"_sgesv_", referenced from:
_MAIN__ in test.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
make: *** [a.out] Error 1
sgesv is the lapack subroutine being called which shall be included in veclib/accelerate framework