mirror of
https://github.com/python/cpython.git
synced 2025-10-31 21:51:50 +00:00
Lyle Johnson: pass in temp directory as 'build_temp' argument when calling
'link_shared_object()'.
This commit is contained in:
parent
bfc79d644a
commit
cc623a2574
1 changed files with 2 additions and 1 deletions
|
|
@ -430,7 +430,8 @@ def build_extensions (self):
|
||||||
library_dirs=ext.library_dirs,
|
library_dirs=ext.library_dirs,
|
||||||
runtime_library_dirs=ext.runtime_library_dirs,
|
runtime_library_dirs=ext.runtime_library_dirs,
|
||||||
extra_postargs=extra_args,
|
extra_postargs=extra_args,
|
||||||
debug=self.debug)
|
debug=self.debug,
|
||||||
|
build_temp=self.build_temp)
|
||||||
|
|
||||||
# build_extensions ()
|
# build_extensions ()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue