Skip to content

Commit

Permalink
fedora: fix GMX_SIMD for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
junghans committed Sep 26, 2024
1 parent fe09f86 commit bf06c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedora
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUN if [ -n "${GMX_BRANCH}" ] && [ "${GMX_BRANCH}" != "none" ]; then \
else \
curl https://gitlab.com/gromacs/gromacs/-/merge_requests/1524.patch | patch -d gromacs -p 1; \
fi && \
cmake -GNinja -S gromacs -B gromacs/build -DCMAKE_INSTALL_PREFIX=/usr -DGMX_SIMD=SSE2 -DGMX_DOUBLE=${GMX_DOUBLE} ${gmx_cmake_opts} && \
cmake -GNinja -S gromacs -B gromacs/build -DCMAKE_INSTALL_PREFIX=/usr $(if [ "$(uname -m)" = "x86_64"; then echo -DGMX_SIMD=SSE2; fi) -DGMX_DOUBLE=${GMX_DOUBLE} ${gmx_cmake_opts} && \
cmake --build gromacs/build && \
sudo cmake --install gromacs/build; \
fi
Expand Down

0 comments on commit bf06c7c

Please sign in to comment.