Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change default value of maxmin/precision to 1e-3 for smpi. Fix bug [#17132]
[simgrid.git] / src / smpi / smpif90.in
index 60d8d59..9e30ca3 100644 (file)
@@ -1,5 +1,11 @@
 #! /bin/sh
 
+# Copyright (c) 2012-2014. 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.
+
 F90=@GFORTRAN_EXE@
 
 INCLUDEARGS="@includeflag@"
@@ -18,7 +24,8 @@ cleanup () {
 }
 trap 'cleanup' EXIT
 
-list_set CMDLINE
+list_set CMDLINE "${F90}"
+list_add_not_empty CMDLINE "${FFLAGS}"
 while [ $# -gt 0 ]; do
     ARG="$1"
     shift
@@ -42,7 +49,9 @@ while [ $# -gt 0 ]; do
     esac
 done
 
-list_set CMDLINE "${FFLAGS}" "${CMDLINE}" ${INCLUDEARGS} ${CMAKE_LINKARGS} "${LINKARGS}"
-eval $(list_get CMDLINE)
+list_add_not_empty CMDLINE ${INCLUDEARGS}
+list_add_not_empty CMDLINE ${CMAKE_LINKARGS}
+list_add_not_empty CMDLINE "${LINKARGS}"
 
-"${F90}" "$@"
+eval $(list_get CMDLINE)
+"$@"