> During the last weeks I've trying to port boost::python 1.23 to work
> with Visual C++ 7.1. I had some headaches while doing so because VC++
[quoted text clipped - 9 lines]
> is trigering the ICF.
> Thanks.
I was able to confirm this ICE in VC7.1 and it appears to be fixed in
Whidbey (VC8). The code posted is in fact invalid and VC8 gives an
appropriate error instead of the ICE.
Would using boost::python 2 be an option? AFIAK that works perfectly well
with VC7.1.
-cd
Gabriel Becedillas - 01 Jul 2004 22:49 GMT
> I was able to confirm this ICE in VC7.1 and it appears to be fixed in
> Whidbey (VC8). The code posted is in fact invalid and VC8 gives an
> appropriate error instead of the ICE.
Thank you very much for checking.
> Would using boost::python 2 be an option? AFIAK that works perfectly well
> with VC7.1.
The reason why we're using such and old boost::python version is that
we're using python 2.0.1 vm embedded in our application. Upgrading
that is a very critical process.
Thanks again for your response.