Skip to content
Snippets Groups Projects
Commit 867e1333 authored by Erik Schnetter's avatar Erik Schnetter
Browse files

Remove outdated comment

parent 7c155f74
Branches
Tags
No related merge requests found
...@@ -171,12 +171,10 @@ def check_install(self, spec): ...@@ -171,12 +171,10 @@ def check_install(self, spec):
cc = which(join_path(spec['mpi'].prefix.bin, "mpicc")) cc = which(join_path(spec['mpi'].prefix.bin, "mpicc"))
else: else:
cc = which('cc') cc = which('cc')
# TODO: Automate these path settings # TODO: Automate these path and library settings
cc('-c', "-I%s" % join_path(spec.prefix, "include"), "check.c") cc('-c', "-I%s" % join_path(spec.prefix, "include"), "check.c")
cc('-o', "check", "check.o", cc('-o', "check", "check.o",
# I couldn't make libraries work on Darwin
"-L%s" % join_path(spec.prefix, "lib"), "-lhdf5", "-L%s" % join_path(spec.prefix, "lib"), "-lhdf5",
# join_path(spec.prefix, "lib", "libhdf5.a"),
"-lz") "-lz")
try: try:
output = subprocess.check_output("./check") output = subprocess.check_output("./check")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment