484 |
pass |
pass |
485 |
|
|
486 |
# ============= Remember what options were used in the compile ===================================== |
# ============= Remember what options were used in the compile ===================================== |
487 |
env.Execute("/bin/rm -f " + libinstall + "/Compiled.with.*") |
Delete(libinstall + "/Compiled.with.*") |
488 |
|
|
489 |
if not useMPI: env.Execute("/bin/rm -f " + libinstall + "/pythonMPI") |
if not useMPI: Delete(libinstall + "/pythonMPI") |
490 |
|
|
491 |
if dodebug: env.Execute("touch " + libinstall + "/Compiled.with.debug") |
if dodebug: Touch(libinstall + "/Compiled.with.debug") |
492 |
if useMPI: env.Execute("touch " + libinstall + "/Compiled.with.mpi") |
if useMPI: Touch(libinstall + "/Compiled.with.mpi") |
493 |
if omp_flags != '': env.Execute("touch " + libinstall + "/Compiled.with.OpenMP") |
if omp_flags != '': Touch(libinstall + "/Compiled.with.OpenMP") |
494 |
if bounds_check: env.Execute("touch " + libinstall + "/Compiled.with.bounds_check") |
if bounds_check: Touch(libinstall + "/Compiled.with.bounds_check") |
495 |
|
|
496 |
# ============= set mkl (but only of no MPI) ===================================== |
# ============= set mkl (but only of no MPI) ===================================== |
497 |
if not useMPI: |
if not useMPI: |