remove the "-Wstrict-prototypes" compiler option

This commit is contained in:
PyYoshi 2017-03-28 17:47:27 +09:00
parent 61e6667105
commit caeca92041

View file

@ -3,11 +3,11 @@
import os
import sys
import platform
import glob
import codecs
import re
from distutils.command.build_ext import build_ext
from distutils import sysconfig
try:
from setuptools import setup, Extension
@ -84,6 +84,12 @@ uchardet_sources = [
]
sources += uchardet_sources
# Remove the "-Wstrict-prototypes" compiler option, which isn't valid for C++.
cfg_vars = sysconfig.get_config_vars()
for key, value in cfg_vars.items():
if type(value) == str:
cfg_vars[key] = value.replace("-Wstrict-prototypes", "")
cchardet_module = Extension(
'cchardet._cchardet',
sources=sources,