Fix: Pass user lib (the one in conf.cfg) to IRP.f90

This commit is contained in:
Thomas Applencourt 2018-12-06 18:48:51 -06:00 committed by GitHub
parent f9e473d703
commit 81ed46bd7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ def ninja_create_env_variable(pwd_config_file):
l_string.append(str_)
lib_lapack = get_compilation_option(pwd_config_file, "LAPACK_LIB")
str_lib = " ".join([LIB, lib_lapack, EZFIO_LIB, ZMQ_LIB])
lib_usr = get_compilation_option(pwd_config_file, "LIB")
str_lib = " ".join([LIB, lib_lapack, EZFIO_LIB, ZMQ_LIB, lib_usr])
l_string.append("LIB = {0} ".format(str_lib))
l_string.append("")