-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Use pkg-config to detect flags #5
Comments
As far as I understand this issue only the following flags might be provided through Line 44 in c03e392
The remaining flags have been removed in #36 when we removed MPI. @fsimonis am overseeing something? Do you think that replacing |
Important note here: pkg-config also returns more than that: it also returns the include path and the library path (apart from the library name). It can be e.g. something like In your case it probably skips the paths because they are system paths. But it is a very handy tool if you have your dependencies in non-system directories. You just need to make pkg-config aware of the existence of your dependency (e.g. adding the path to the |
Thanks for the info! Sounds like good arguments for keeping this issue open. I will look into it. |
Picking up this issue, because I stumbled over it when trying to build the bindings on top of our spack baseimage. |
Closed via #149 |
It may be worth looking into the pkgconfig package.
We could use this to extract the necessary compiler flags for preCICE.
The text was updated successfully, but these errors were encountered: