exabayes: specify c++11 (#30282)
This commit is contained in:
parent
802a48fb43
commit
254cd624fe
@ -35,3 +35,9 @@ def configure_args(self):
|
|||||||
else:
|
else:
|
||||||
args.append('--disable-mpi')
|
args.append('--disable-mpi')
|
||||||
return args
|
return args
|
||||||
|
|
||||||
|
def flag_handler(self, name, flags):
|
||||||
|
if name.lower() == 'cxxflags':
|
||||||
|
# manual cites need for c++11
|
||||||
|
flags.append(self.compiler.cxx11_flag)
|
||||||
|
return (flags, None, None)
|
||||||
|
Loading…
Reference in New Issue
Block a user