We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @nordmoen and all,
I want to use an external fortran library within blom, I've tried
lib = fcc.find_library('libname', has_header='lib.mod', required=true) deps+=lib
kinda works. but the fortran compiler does not find the module file unless the following is added
includes+=<hard-coded library_path>/include/fortran
How to get this <hard-coded library_path> from lib?
<hard-coded library_path>
lib
The text was updated successfully, but these errors were encountered:
Is there a reason that you would use compiler.find_library instead of dependency?
compiler.find_library
dependency
To help more I also need a bit more information. How is the fortran library installed, is it simply a directory or is it a module?
Sorry, something went wrong.
No branches or pull requests
Hi @nordmoen and all,
I want to use an external fortran library within blom, I've tried
kinda works.
but the fortran compiler does not find the module file unless the following is added
How to get this
<hard-coded library_path>
fromlib
?The text was updated successfully, but these errors were encountered: