exabayes: specify c++11 (#30282)

This commit is contained in:
snehring 2022-04-26 10:22:27 -05:00 committed by GitHub
parent 802a48fb43
commit 254cd624fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)