Issue 255: Do not support gcc on windows platform anymore
Status:  Investigating
Owner: ----
Reported by dongshen...@gmail.com, Apr 20, 2012
In the current setup.py, the following code only working on msvc,
not gcc:

[[[
    if os.name == 'nt':
        settings['extra_compile_args'] = ['/Wall',
                                          '/wd4668',
                                          '/wd4820',
                                          '/wd4711', # function selected for automatic inline expansion
                                          '/wd4100', # unreferenced formal parameter
                                          '/wd4127', # "conditional expression is constant" testing compilation constants
                                          '/wd4191', # casts to PYCFunction which doesn't have the keywords parameter
                                          ]
]]]

Sep 27, 2012
Project Member #1 mkleehammer
In general I'm not targeting gcc on Windows, but I'll try to do something about this - should be easy.

Status: Investigating