~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to SConstruct

  • Committer: ilmarw@gogmagog.simula.no
  • Date: 2008-05-29 10:46:14 UTC
  • mfrom: (2122.3.2 trunk)
  • mto: (2668.1.45 trunk)
  • mto: This revision was merged to the branch mainline in revision 2670.
  • Revision ID: ilmarw@gogmagog.simula.no-20080529104614-xjn0a188wtj2wlmw
Repo fix, roll back unwanted Parameter changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
  # CXX=/path/to/mpi_cxx_compiler  - OK (use os.path.basename)
191
191
  # CXX="ccache cxx_compiler"      - OK (use mpi_cxx.split()[-1])
192
192
  # FIXME: Any other cases?
193
 
  if not env.Detect(["mpirun", "mpiexec", "orterun"]) or not \
 
193
  if not env.Detect("mpirun") or not \
194
194
         (mpi_cxx and \
195
195
          os.path.basename(mpi_cxx.split()[-1]) in mpi_cxx_compilers):
196
196
    print "MPI not found (might not work if PETSc uses MPI)."