21 lines
922 B
Diff
21 lines
922 B
Diff
--- a/bin/mpicc 2021-02-04 18:15:11.233632360 +0100
|
|
+++ b/bin/mpicc 2021-02-05 09:33:49.493598479 +0100
|
|
@@ -50,7 +50,7 @@
|
|
if [ x"$opt_args" == x"" ]; then
|
|
case "${compiler_short_name}" in
|
|
icc|icx) "$dir"/mpiicc -cc=$compiler_name "$@" ;;
|
|
- cc|*gcc*|clang*) "$dir"/mpigcc -cc=$compiler_name "$@" ;;
|
|
+ cc|*gcc*|clang*|mcc|echo) "$dir"/mpigcc -cc=$compiler_name "$@" ;;
|
|
mpicc) "$dir"/mpigcc "$@" ;;
|
|
*)
|
|
echo "Error: unsupported compiler name '$compiler_name'."
|
|
@@ -60,7 +60,7 @@
|
|
else
|
|
case "${compiler_short_name}" in
|
|
icc|icx) "$dir"/mpiicc -cc=$compiler_name "$@" $opt_args ;;
|
|
- cc|*gcc*|clang*) "$dir"/mpigcc -cc=$compiler_name "$@" $opt_args ;;
|
|
+ cc|*gcc*|clang*|mcc|echo) "$dir"/mpigcc -cc=$compiler_name "$@" $opt_args ;;
|
|
mpicc) "$dir"/mpigcc "$@" $opt_args ;;
|
|
*)
|
|
echo "Error: unsupported compiler name '$compiler_name'."
|