X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b3677b425b9cc6949c1573d59ac772540cbf4b2..ce1289d4421b08ce6f69d8203784ee648671972e:/src/smpi/smpif90.in diff --git a/src/smpi/smpif90.in b/src/smpi/smpif90.in index 9e30ca34bb..0be13cee5b 100644 --- a/src/smpi/smpif90.in +++ b/src/smpi/smpif90.in @@ -6,6 +6,8 @@ # This program is free software; you can redistribute it and/or modify it # under the terms of the license (GNU LGPL) which comes with this package. +SIMGRID_VERSION="@SIMGRID_VERSION_STRING@" + F90=@GFORTRAN_EXE@ INCLUDEARGS="@includeflag@" @@ -39,10 +41,14 @@ while [ $# -gt 0 ]; do TMPFILE=$(mymktemp "${ARG}" ".f90") list_add TMPFILES "${TMPFILE}" #replace "program main_name by subroutine user\_main (and the end clause as well)" - sed 's/[[:space:]]*program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/subroutine user\_main /gI;s/[[:space:]]*use[[:space:]]*mpi/\include \"mpif\.h\" /gI' "${ARG}" > "${TMPFILE}" + sed 's/[[:space:]]*program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/ subroutine user\_main /gI;s/[[:space:]]*use[[:space:]]*mpi/\include \"mpif\.h\" /gI' "${ARG}" > "${TMPFILE}" SRCFILE="${TMPFILE}" list_add CMDLINE "${SRCFILE}" ;; + '-version' | '--version' | '-v') + printf '%b\n' "$SIMGRID_VERSION" + exit 0 + ;; *) list_add CMDLINE "${ARG}" ;;