You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my environment I am trying to install both warpx and impactx. Both of them depend on ablastr which is built as part of each codes build process. This causes conflicts on install because both impactx and warpx try to install ${CMAKE_INSTALL_PREFIX}/lib/libablastr*.
It looks like impactx has the start of support for setting ImpactX_ablastr_internal=OFF but it currently errors out. If I could set this flag then I think I could have impactx use the ablastr library installed by warpx.
Would it be possible to make this flag work? If someone can give some direction on what is needed I'm happy to open a PR.
Thanks!
The text was updated successfully, but these errors were encountered:
Ideally, inside WarpX, we will add two CMake options WarpX_INSTALL and ABLASTR_INSTALL (the 2nd is required if the former is set) to select the install logic.
Then we need to add support to find an external ABLASTR in both WarpX and ImpactX (easy).
In my environment I am trying to install both warpx and impactx. Both of them depend on ablastr which is built as part of each codes build process. This causes conflicts on install because both impactx and warpx try to install
${CMAKE_INSTALL_PREFIX}/lib/libablastr*
.It looks like impactx has the start of support for setting
ImpactX_ablastr_internal=OFF
but it currently errors out. If I could set this flag then I think I could have impactx use the ablastr library installed by warpx.Would it be possible to make this flag work? If someone can give some direction on what is needed I'm happy to open a PR.
Thanks!
The text was updated successfully, but these errors were encountered: