Re: [Python-Dev] Visual Studio 2008 compiler option EHsc ?

2008-05-18 Thread Martin v. Löwis
Is there any downside to doing this by default? The most obvious one is the (slight) loss of performance. The mere fact that it is an option, and not enabled by default, indicates that there might be problems enabling it. One problem might be that some applications may require support for

Re: [Python-Dev] Visual Studio 2008 compiler option EHsc ?

2008-05-17 Thread Matthieu Brucher
Hi, 2008/5/17 Jim Kleckner [EMAIL PROTECTED]: Martin v. Löwis wrote: In building a package with several platforms, I ran across the warning message below from Visual Studio 2008. Should we add the /EHsc option to the compile_options in distutils for MSVC? Or is it more complex than

Re: [Python-Dev] Visual Studio 2008 compiler option EHsc ?

2008-05-16 Thread Jim Kleckner
Martin v. Löwis wrote: In building a package with several platforms, I ran across the warning message below from Visual Studio 2008. Should we add the /EHsc option to the compile_options in distutils for MSVC? Or is it more complex than that... Who is we? If you have a module that uses C++

[Python-Dev] Visual Studio 2008 compiler option EHsc ?

2008-05-15 Thread Jim Kleckner
In building a package with several platforms, I ran across the warning message below from Visual Studio 2008. Should we add the /EHsc option to the compile_options in distutils for MSVC? Or is it more complex than that... This link describes the warning: http://tinyurl.com/4fmjue

Re: [Python-Dev] Visual Studio 2008 compiler option EHsc ?

2008-05-15 Thread Martin v. Löwis
In building a package with several platforms, I ran across the warning message below from Visual Studio 2008. Should we add the /EHsc option to the compile_options in distutils for MSVC? Or is it more complex than that... Who is we? If you have a module that uses C++ exceptions, you should