0

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.

Peter Petrik
  • 9,701
  • 5
  • 41
  • 65
user2714423
  • 273
  • 1
  • 3
  • 5

1 Answers1

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