removed unnecessary quotation marks
This commit is contained in:
parent
c6a4d9f909
commit
649b5c39d5
|
@ -53,9 +53,9 @@ def set_toolchain(compiler, mpi):
|
||||||
cxx = "mpicxx"
|
cxx = "mpicxx"
|
||||||
fc = "mpif90"
|
fc = "mpif90"
|
||||||
elif mpi == "necmpi":
|
elif mpi == "necmpi":
|
||||||
cc = "\"mpincc -vh\""
|
cc = "mpincc -vh"
|
||||||
cxx = "\"mpinc++ -vh\""
|
cxx = "mpinc++ -vh"
|
||||||
fc = "\"mpinfort -vh\""
|
fc = "mpinfort -vh"
|
||||||
os.environ["NMPI_CC_H"] = "gcc"
|
os.environ["NMPI_CC_H"] = "gcc"
|
||||||
os.environ["NMPI_CXX_H"] = "g++"
|
os.environ["NMPI_CXX_H"] = "g++"
|
||||||
os.environ["NMPI_FC_H"] = "gfortran"
|
os.environ["NMPI_FC_H"] = "gfortran"
|
||||||
|
@ -70,13 +70,13 @@ def set_toolchain(compiler, mpi):
|
||||||
os.environ["OMPI_MPIF90"] = "flang"
|
os.environ["OMPI_MPIF90"] = "flang"
|
||||||
os.environ["OMPI_MPIF77"] = "flang"
|
os.environ["OMPI_MPIF77"] = "flang"
|
||||||
elif (mpi == "intelmpi"):
|
elif (mpi == "intelmpi"):
|
||||||
cc = "\"mpicc -cc=clang\""
|
cc = "mpicc -cc=clang"
|
||||||
cxx = "\"mpicxx -cxx=clang++\""
|
cxx = "mpicxx -cxx=clang++"
|
||||||
fc = "\"mpif90 -fc=flang\""
|
fc = "mpif90 -fc=flang"
|
||||||
elif mpi == "necmpi":
|
elif mpi == "necmpi":
|
||||||
cc = "\"mpincc -vh\""
|
cc = "mpincc -vh"
|
||||||
cxx = "mpic++ -vh"
|
cxx = "mpic++ -vh"
|
||||||
fc = "\"mpinfort -vh\""
|
fc = "mpinfort -vh"
|
||||||
os.environ["NMPI_CC_H"] = "clang"
|
os.environ["NMPI_CC_H"] = "clang"
|
||||||
os.environ["NMPI_CXX_H"] = "clang++"
|
os.environ["NMPI_CXX_H"] = "clang++"
|
||||||
os.environ["NMPI_FC_H"] = "flang"
|
os.environ["NMPI_FC_H"] = "flang"
|
||||||
|
@ -95,9 +95,9 @@ def set_toolchain(compiler, mpi):
|
||||||
cxx = "mpiicpc"
|
cxx = "mpiicpc"
|
||||||
fc = "mpiifort"
|
fc = "mpiifort"
|
||||||
elif mpi == "necmpi":
|
elif mpi == "necmpi":
|
||||||
cc = "\"mpincc -vh\""
|
cc = "mpincc -vh"
|
||||||
cxx = "mpic++ -vh"
|
cxx = "mpic++ -vh"
|
||||||
fc = "\"mpinfort -vh\""
|
fc = "mpinfort -vh"
|
||||||
os.environ["NMPI_CC_H"] = "icc"
|
os.environ["NMPI_CC_H"] = "icc"
|
||||||
os.environ["NMPI_CXX_H"] = "icpc"
|
os.environ["NMPI_CXX_H"] = "icpc"
|
||||||
os.environ["NMPI_FC_H"] = "ifort"
|
os.environ["NMPI_FC_H"] = "ifort"
|
||||||
|
|
Loading…
Reference in New Issue