jakesylvestre / pyodbc

Automatically exported from code.google.com/p/pyodbc
MIT No Attribution
0 stars 0 forks source link

Do not support gcc on windows platform anymore #255

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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
                                          ]
]]]

Original issue reported on code.google.com by dongshen...@gmail.com on 20 Apr 2012 at 8:49

GoogleCodeExporter commented 9 years ago
In general I'm not targeting gcc on Windows, but I'll try to do something about 
this - should be easy.

Original comment by mkleehammer on 27 Sep 2012 at 8:29