Revision f23ffbf5bd19153f4c488496073a4629d024379a authored by Leif Strand on 18 September 2007, 01:52:50 UTC, committed by Leif Strand on 18 September 2007, 01:52:50 UTC
with -lExchanger". Also, use CIT_HEADER_MPI so that configuring --with-exchanger using MPICH2 works (see Issue14 and Issue57).
1 parent a2fd2a4
citcoms_datadir
#!/usr/bin/env python
def get_var():
# get your username on this machine, and make it upper case
import os
var = os.environ.get("USER")
return var.upper()
# invariant prefix of datadir
prefix = "/scratch/"
# invariant suffix of datadir
suffix = ""
# get the machine-dependent part of datadir
var_path = get_var()
# construct the full string for datadir
print "%s%s%s" % ( prefix, var_path, suffix )

Computing file changes ...