mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Pass 'force' flag to 'new_compiler()'.
This commit is contained in:
parent
455eb61648
commit
3c6204a87f
1 changed files with 3 additions and 2 deletions
|
|
@ -121,8 +121,9 @@ def run (self):
|
|||
# Setup the CCompiler object that we'll use to do all the
|
||||
# compiling and linking
|
||||
self.compiler = new_compiler (plat=os.environ.get ('PLAT'),
|
||||
verbose=self.distribution.verbose,
|
||||
dry_run=self.distribution.dry_run)
|
||||
verbose=self.verbose,
|
||||
dry_run=self.dry_run,
|
||||
force=self.force)
|
||||
if self.include_dirs is not None:
|
||||
self.compiler.set_include_dirs (self.include_dirs)
|
||||
if self.define is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue