I can only find libgfortan.a
. I am installing cvxopt using cmd and following the instruction on the website. I get an error that it cannot find -lgfortan
.
Asked
Active
Viewed 431 times
0

Peter Petrik
- 9,701
- 5
- 41
- 65

user2714423
- 273
- 1
- 3
- 5
-
possible duplicate of [lgfortran not found](http://stackoverflow.com/questions/10881002/lgfortran-not-found) – Peter Petrik Feb 24 '14 at 09:18
-
that was on ubuntu, i am on windows! @Peter – user2714423 Feb 24 '14 at 21:05
1 Answers
1
-lgfortran
is expanded by linker to libgfortran.a
. Your problem is that you do not probably have it on linker's search path. You could copy libgfortran.a to your src directory as you have to do for lapack and blas
Copy libblas.a and liblapack.a to the src directory
or specify gfortran search path by -L<dir>
in your link command.

Peter Petrik
- 9,701
- 5
- 41
- 65