[petsc-dev] windows fixes.

Satish Balay balay at mcs.anl.gov
Fri Jul 5 12:29:14 CDT 2013


On Wed, 3 Jul 2013, Jed Brown wrote:

> Satish Balay <balay at mcs.anl.gov> writes:
> 
> > How about:
> >
> >>>>>>>>>
> > -  isGNU = staticmethod(config.memoize(isGNU))
> > +
> > +  import sys
> > +  if sys.version_info >= (2,5):
> > +    isGNU = staticmethod(config.memoize(isGNU))
> > +  else:
> > +    isGNU = staticmethod(isGNU)
> > <<<<<<<<<
> 
> I still don't understand the actual problem.  I reproduced this funny
> thing where Python prints 'gcc' and a stack trace without stating an
> exception, but I didn't figure out what the exception was or why the
> reporting was messed up.

Should we add one of the workarrounds to get the nightlybuilds going for now?

Satish



More information about the petsc-dev mailing list