-
Notifications
You must be signed in to change notification settings - Fork 882
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
configury: add portals4 include path to osc-monitoring component build #4521
configury: add portals4 include path to osc-monitoring component build #4521
Conversation
ompi/mca/osc/monitoring/configure.m4
Outdated
# substitute in the things needed to build portals4 | ||
AC_SUBST([osc_monitoring_portals4_CPPFLAGS]) | ||
AC_SUBST([osc_monitoring_portals4_LDFLAGS]) | ||
AC_SUBST([osc_monitoring_portals4_LIBS]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't look like the LDFLAGS
and LIBS
values are used.
Signed-off-by: Todd Kordenbrock <thkgcode@gmail.com>
Signed-off-by: Todd Kordenbrock <thkgcode@gmail.com>
41410c1
to
cba8b7f
Compare
We do not need to interact with the other OSC modules. We are working on a fix. |
@jsquyres PR updated to remove unused variables. |
@bosilca So you are going to take out all the Portals4 references? |
@tkordenbrock yes all references to other OSC components. |
@bosilca So should this PR be closed / replaced by a different PR? |
A more generic approach is under development in #4527 . |
The osc-monitoring component didn't add the Portals4 include directory to AM_CPPFLAGS which causes a build failure if Portals4 is installed in a location that isn't in the compiler's default search path.
The PR clarifies the OPAL_CHECK_PORTALS4() prefix name, exports the Portals4 variables and adds the Portals4 CPPFLAGS to AM_CPPFLAGS.
Signed-off-by: Todd Kordenbrock thkgcode@gmail.com
@bosilca @jsquyres Please review.