| Issue 255: | Do not support gcc on windows platform anymore | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Investigating
|