diff options
-rw-r--r-- | var/spack/repos/builtin/packages/hdf5/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5/package.py b/var/spack/repos/builtin/packages/hdf5/package.py index 2820a3a304..75aa239be3 100644 --- a/var/spack/repos/builtin/packages/hdf5/package.py +++ b/var/spack/repos/builtin/packages/hdf5/package.py @@ -175,7 +175,9 @@ HDF5 version {version} {version} # TODO: Automate these path and library settings cc('-c', "-I%s" % join_path(spec.prefix, "include"), "check.c") cc('-o', "check", "check.o", - "-L%s" % join_path(spec.prefix, "lib"), "-lhdf5", + "-L%s" % join_path(spec.prefix, "lib"), + "-L%s" % join_path(spec.prefix, "lib64"), + "-lhdf5", "-lz") try: check = Executable('./check') |