gromacs: enable linking with armpl-gcc FFT (#33750)
This commit is contained in:
parent
89976af732
commit
e4c2d1afc6
@ -489,6 +489,13 @@ def cmake_args(self):
|
||||
options.append(
|
||||
"-DFFTWF_LIBRARIES={0}".format(self.spec["amdfftw"].libs.joined(";"))
|
||||
)
|
||||
elif "^armpl-gcc" in self.spec:
|
||||
options.append(
|
||||
"-DFFTWF_INCLUDE_DIR={0}".format(self.spec["armpl-gcc"].headers.directories[0])
|
||||
)
|
||||
options.append(
|
||||
"-DFFTWF_LIBRARY={0}".format(self.spec["armpl-gcc"].libs.joined(";"))
|
||||
)
|
||||
|
||||
# Ensure that the GROMACS log files report how the code was patched
|
||||
# during the build, so that any problems are easier to diagnose.
|
||||
|
Loading…
Reference in New Issue
Block a user