exabayes: specify c++11 (#30282)
This commit is contained in:
parent
802a48fb43
commit
254cd624fe
1 changed files with 6 additions and 0 deletions
|
@ -35,3 +35,9 @@ def configure_args(self):
|
|||
else:
|
||||
args.append('--disable-mpi')
|
||||
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 a new issue