I feel somewhat ridiculous, but I'm trying to import the OpenBLAS libraries into a project. They were built with gfortran
as the Fortran compiler. My early builds had no issue just pulling libopenblas.so
in, but on another system, it's choking on libgfortran.so
when I try to run our program, which doesn't exist there. My impression has been that this is a standard library on most, if not all, Linux systems. I could probably add a copy of libgfortran.so
to Artifactory and let Apache Ivy pull it in, but it seems like it would make more sense to use the standard version if possible. Is there a good way to pull it in via Ivy when doing an ant resolve
command if it doesn't exist on the system?
An alternate solution may be to statically link libgfortran.a
in on the compiling system, but my attempts to do so by adding -static RELATIVE_PATH_TO_LIBS/libgfortran.a
compile and link fine, but I still get errors when running said program on the system which lacks the library.
Thank you for whatever help you can provide.