mirror of https://github.com/python/cpython.git
[Patch #681504] Call customize_compiler in config command
This commit is contained in:
parent
d87eeb9477
commit
679bc9fce5
|
@ -17,6 +17,7 @@
|
||||||
from types import *
|
from types import *
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
from distutils.errors import DistutilsExecError
|
from distutils.errors import DistutilsExecError
|
||||||
|
from distutils.sysconfig import customize_compiler
|
||||||
from distutils import log
|
from distutils import log
|
||||||
|
|
||||||
LANG_EXT = {'c': '.c',
|
LANG_EXT = {'c': '.c',
|
||||||
|
@ -104,6 +105,7 @@ def _check_compiler (self):
|
||||||
if not isinstance(self.compiler, CCompiler):
|
if not isinstance(self.compiler, CCompiler):
|
||||||
self.compiler = new_compiler(compiler=self.compiler,
|
self.compiler = new_compiler(compiler=self.compiler,
|
||||||
dry_run=self.dry_run, force=1)
|
dry_run=self.dry_run, force=1)
|
||||||
|
customize_compiler(self.compiler)
|
||||||
if self.include_dirs:
|
if self.include_dirs:
|
||||||
self.compiler.set_include_dirs(self.include_dirs)
|
self.compiler.set_include_dirs(self.include_dirs)
|
||||||
if self.libraries:
|
if self.libraries:
|
||||||
|
|
Loading…
Reference in New Issue