Skip to content

Commit

Permalink
Merge pull request easybuilders#19110 from laraPPr/20231030103644_new…
Browse files Browse the repository at this point in the history
…_pr_PLUMED262

only set flag `--enable-asmjit` for PLUMED when installing on `x86_64`
  • Loading branch information
bedroge authored Nov 1, 2023
2 parents 9b2199f + 410e26a commit ad461be
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 3 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.6.2-foss-2020b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
if ARCH == 'x86_64':
# the flag is not supported on aarch64
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
4 changes: 3 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.7.0-foss-2020b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
if ARCH == 'x86_64':
# the flag is not supported on aarch64
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
4 changes: 3 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.7.2-foss-2021a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
if ARCH == 'x86_64':
# the flag is not supported on aarch64
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
4 changes: 3 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.7.3-foss-2021b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
if ARCH == 'x86_64':
# the flag is not supported on aarch64
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
1 change: 0 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.8.0-foss-2021b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
1 change: 0 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.8.1-foss-2022a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down
1 change: 0 additions & 1 deletion easybuild/easyconfigs/p/PLUMED/PLUMED-2.9.0-foss-2022b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies = [
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
configopts += '--enable-boost_graph --enable-boost_serialization '
configopts += '--enable-asmjit '
prebuildopts = 'source sourceme.sh && '

# make sure that ld.gold linker is used
Expand Down

0 comments on commit ad461be

Please sign in to comment.