openfoam: add mpfr search paths (#42779)

Co-authored-by: Branden Moore <branden.moore@amd.com>
This commit is contained in:
AMD Toolchain Support 2024-02-27 14:07:48 +05:30 committed by GitHub
parent 5c26ce5385
commit bca7698138
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -689,11 +689,13 @@ def configure(self, spec, prefix):
"CGAL": [
("BOOST_ARCH_PATH", spec["boost"].prefix),
("CGAL_ARCH_PATH", spec["cgal"].prefix),
("MPFR_ARCH_PATH", spec["mpfr"].prefix),
(
"LD_LIBRARY_PATH",
foam_add_lib(
pkglib(spec["boost"], "${BOOST_ARCH_PATH}"),
pkglib(spec["cgal"], "${CGAL_ARCH_PATH}"),
pkglib(spec["mpfr"], "${MPFR_ARCH_PATH}"),
),
),
],