"Balay, Satish via petsc-dev" <petsc-dev@mcs.anl.gov> writes:

> Hm for CXXFLAGS - I think you have to do:
>
> self.pushLanguage('Cxx')
> CXXFLAGS = self.getCompilerFlags()
> self.popLanguage()

These days, it's better to write this using the context manager:

  with self.Language('Cxx'):
    CXXFLAGS = self.getCompilerFlags()

With regard to the test, how much do you think is desirable to enforce?

Reply via email to