X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c57842fe897f53b46f0be3da87f7c996674be7d6..c46aba70aa4ccf22cc19fac31d451c7158e922dd:/src/smpi/smpiff.in diff --git a/src/smpi/smpiff.in b/src/smpi/smpiff.in index 1c6308dfc6..90e01409a6 100644 --- a/src/smpi/smpiff.in +++ b/src/smpi/smpiff.in @@ -1,12 +1,13 @@ #! /bin/sh -# Copyright (c) 2012-2014. The SimGrid Team. +# Copyright (c) 2012-2015. The SimGrid Team. # All rights reserved. # 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@" +SIMGRID_GITHASH="@SIMGRID_GITHASH@" F77=@GFORTRAN_EXE@ @@ -26,7 +27,13 @@ cleanup () { } trap 'cleanup' EXIT - +filter_and_compile() { + list_add TMPFILES "${TMPFILE}" + #replace "program main_name by subroutine user\_main (and the end clause as well)" + sed 's/[[:space:]]\{6\}[[:space:]]*\(end \)\{0,1\}program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/ \1subroutine user_main /gI;s/[[:space:]]*use[[:space:]]*mpi/\include \"mpif\.h\" /gI' "${ARG}" > "${TMPFILE}" + SRCFILE="${TMPFILE}" + list_add CMDLINE "${SRCFILE}" +} NEEDS_OUTPUT=1 list_set CMDLINE "${F77}" @@ -40,19 +47,24 @@ while [ $# -gt 0 ]; do LINKARGS="" list_add CMDLINE "-c" ;; - *.f|*.F) + *.f) TMPFILE=$(mymktemp "${ARG}" ".f") - list_add TMPFILES "${TMPFILE}" - #replace "program main_name by subroutine user\_main (and the end clause as well)" - sed 's/[[:space:]]\{6\}[[:space:]]*\(end \)\{0,1\}program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/ \1subroutine user_main /gI;s/[[:space:]]*use[[:space:]]*mpi/\include \"mpif\.h\" /gI' "${ARG}" > "${TMPFILE}" - ORIGFILE="${ARG}" - SRCFILE="${TMPFILE}" - list_add CMDLINE "${SRCFILE}" + ORIGFILE="${ARG%.f}" + filter_and_compile + ;; + *.F) + TMPFILE=$(mymktemp "${ARG}" ".F") + ORIGFILE="${ARG%.F}" + filter_and_compile ;; '-version' | '--version') printf '%b\n' "$SIMGRID_VERSION" exit 0 ;; + "-git-version" | "--git-version") + printf '%b\n' "$SIMGRID_GITHASH" + exit 0 + ;; '-compiler-version' | '--compiler-version') ${F77} --version ;; @@ -67,7 +79,7 @@ while [ $# -gt 0 ]; do done if [ $NEEDS_OUTPUT -ne 0 ]; then - list_add CMDLINE "-o${ORIGFILE%.f}.o" + list_add CMDLINE "-o${ORIGFILE}.o" fi list_add_not_empty CMDLINE ${INCLUDEARGS}