pycasso-compiler-gfortran-4.4.7.rc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. !
  2. ! compiler specific settings : gfortran-4.x.x
  3. !
  4. ! fortran compiler:
  5. compiler.fc : gfortran
  6. ! same compiler for openmp, since this is enabled via the flags:
  7. compiler.fc.openmp : ${compiler.fc}
  8. !! compilers for MPI programs:
  9. !mpi.compiler.fc : mpif90
  10. !mpi.compiler.fc.openmp : mpif90
  11. ! define flags:
  12. compiler.flags.mpi.fflags :
  13. compiler.flags.mpi.ldflags :
  14. compiler.flags.openmp.fflags : -fopenmp
  15. compiler.flags.openmp.ldflags : -fopenmp
  16. compiler.flags.default.fflags : -ffree-line-length-none -fimplicit-none
  17. compiler.flags.default.ldflags :
  18. compiler.flags.real8.fflags : -fdefault-real-8
  19. compiler.flags.real8.ldflags :
  20. compiler.flags.optim-none.fflags : -O0
  21. compiler.flags.optim-none.ldflags :
  22. compiler.flags.optim-strict.fflags :
  23. compiler.flags.optim-strict.ldflags :
  24. compiler.flags.optim-fast.fflags : -O3
  25. compiler.flags.optim-fast.ldflags :
  26. compiler.flags.optim-vfast.fflags : -O5
  27. compiler.flags.optim-vfast.ldflags :
  28. compiler.flags.check-all.fflags : -fbounds-check -ffpe-trap=zero,invalid
  29. ! -Wall
  30. compiler.flags.check-all.ldflags :
  31. compiler.flags.debug.fflags : -g -fdump-core -fbacktrace -O0
  32. compiler.flags.debug.ldflags :