Inherits build_ext.
Definition at line 40 of file setup.py.
def setup.build_ext_subclass.build_extensions |
( |
|
self | ) |
|
Definition at line 42 of file setup.py.
45 CC = sysconfig.get_config_var(
"CC")
47 if self.compiler.compiler_type ==
'unix' and (
'gcc' in CC
or 'g++' in CC):
48 for e
in self.extensions:
49 e.extra_compile_args.append(
'-Wno-strict-prototypes' )
51 build_ext.build_extensions(self)