Skip to content

Commit

Permalink
Merge pull request #3466 from Flamefire/gromacs-x11
Browse files Browse the repository at this point in the history
Remove X11 flag fro GROMACS 2023+
  • Loading branch information
Micket authored Oct 3, 2024
2 parents 7d372f8 + 2e60f84 commit 1f61ad7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions easybuild/easyblocks/g/gromacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,9 @@ def configure_step(self):
# always specify to use external BLAS/LAPACK
self.cfg.update('configopts', "-DGMX_EXTERNAL_BLAS=ON -DGMX_EXTERNAL_LAPACK=ON")

# disable GUI tools
self.cfg.update('configopts', "-DGMX_X11=OFF")
if gromacs_version < '2023':
# disable GUI tools, removed in v2023
self.cfg.update('configopts', "-DGMX_X11=OFF")

# convince to build for an older architecture than present on the build node by setting GMX_SIMD CMake flag
# it does not make sense for Cray, because OPTARCH is defined by the Cray Toolchain
Expand Down

0 comments on commit 1f61ad7

Please sign in to comment.