X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce0a6a68d85fc54e1ca19b6a32ea280cf392d028..d06a3c5e9caef9c7da9cdeca1a864c5ca253158a:/tools/smpi/generate_smpi_defines.pl diff --git a/tools/smpi/generate_smpi_defines.pl b/tools/smpi/generate_smpi_defines.pl index be614486fe..64d1710a98 100755 --- a/tools/smpi/generate_smpi_defines.pl +++ b/tools/smpi/generate_smpi_defines.pl @@ -1,5 +1,6 @@ #!/usr/bin/env perl # Copyright 2016 Vincent Danjean +# Christian Heinrich # # Call this script like this: # C/C++ : ./generate_smpi_defines.pl ../../include/smpi/smpi.h @@ -25,7 +26,7 @@ if (defined $options{f}) { } print "$commentChar This file has been automatically generated by the script\n"; -print "$commentChar in tools/smpi/" . __FILE__ ."\n"; +print "$commentChar in tools/smpi/generate_smpi_defines.pl\n"; print "$commentChar DO NOT EDIT MANUALLY. ALL CHANGES WILL BE OVERWRITTEN!\n"; # Formatting of the output @@ -37,7 +38,8 @@ sub output_macro { # This is a GCC extension. The last statement is the value of the expression # in parentheses. if (defined $options{f}) { - print "#define ". uc($id) ." smpi_trace_set_call_location(__FILE__,__LINE__); call ". lc $id ."\n"; + print "#define ". lc($id) ." smpi_trace_set_call_location(__FILE__,__LINE__); call ". ucfirst $id ."\n"; + print "#define ". uc($id) ." smpi_trace_set_call_location(__FILE__,__LINE__); call ". ucfirst $id ."\n"; } else { if ($id eq "MPI_Init") {