mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Fixed #2698 - now reads the compiler option when creating the compiler
This commit is contained in:
parent
f7239567ea
commit
7c4afcb1c4
3 changed files with 4 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ class build_ext(Command):
|
|||
|
||||
# Setup the CCompiler object that we'll use to do all the
|
||||
# compiling and linking
|
||||
self.compiler = new_compiler(compiler=None,
|
||||
self.compiler = new_compiler(compiler=self.compiler,
|
||||
verbose=self.verbose,
|
||||
dry_run=self.dry_run,
|
||||
force=self.force)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue