superlu_dist: (master) has cxx11 sources - so update make.inc to list cxx11 compilers (#9316)

This commit is contained in:
Satish Balay 2018-09-24 21:53:14 -05:00 committed by Adam J. Stewart
parent 43b0948457
commit 6b1b84267d

View File

@ -77,6 +77,11 @@ def install(self, spec, prefix):
'ARCH = ar',
'ARCHFLAGS = cr',
'RANLIB = true',
'CXX = {0}'.format(self.spec['mpi'].mpicxx),
'CXXFLAGS = {0} {1} {2}'.format(
' '.join(self.spec.compiler_flags['cxxflags']),
self.compiler.pic_flag,
self.compiler.cxx11_flag),
'CC = {0}'.format(self.spec['mpi'].mpicc),
'CFLAGS = %s %s -O2 %s %s %s' % (
self.compiler.pic_flag,