-
Notifications
You must be signed in to change notification settings - Fork 285
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
imkl pkgconfig files don't work (but can be fixed!) #2700
Labels
Milestone
Comments
@bartoldeman I thought I remember seeing discussion on this but I can't find it now, is this resolved? |
Ah, I found it https://easybuild.slack.com/archives/C34UA1HT7/p1648065346517729 . For completeness I copy the relevant parts of that discussion here
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
pkgconfig/*.pc
files created by theimkl
module reference the$MKLROOT
environment variable which is not usable within*.pc
files. The solution I adopted was to add a lineMKLROOT=${prefix}
after the definition ofincludedir
by doing:sed -i '/^includedir=.*/a MKLROOT=${prefix}' /opt/EasyBuild/software/imkl/*/mkl/bin/pkgconfig/*
The text was updated successfully, but these errors were encountered: