From 4e1a55573814b232809de084ba4bdf9944f9180b Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Mon, 12 Jul 2021 12:56:29 +0200 Subject: [PATCH] Remove mpicc and mpicxx flags for clang These do not work with OpenMPI and do not seem to be necessary. --- components/mpas-framework/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/mpas-framework/Makefile b/components/mpas-framework/Makefile index 543bb35eca59..b581692683e2 100644 --- a/components/mpas-framework/Makefile +++ b/components/mpas-framework/Makefile @@ -356,8 +356,8 @@ gfortran: gfortran-clang: ( $(MAKE) all \ "FC_PARALLEL = mpif90" \ - "CC_PARALLEL = mpicc -cc=clang" \ - "CXX_PARALLEL = mpicxx -cxx=clang++" \ + "CC_PARALLEL = mpicc" \ + "CXX_PARALLEL = mpicxx" \ "FC_SERIAL = gfortran" \ "CC_SERIAL = clang" \ "CXX_SERIAL = clang++" \