mirror of
https://github.com/python/cpython.git
synced 2025-09-16 13:47:31 +00:00
Bug #1706381: Specifying the SWIG option "-c++" in the setup.py file
(as opposed to the command line) will now write file names ending in ".cpp" too.
This commit is contained in:
parent
18afb37845
commit
fb4b3b77c7
2 changed files with 6 additions and 1 deletions
|
@ -533,7 +533,8 @@ class build_ext (Command):
|
|||
if self.swig_cpp:
|
||||
log.warn("--swig-cpp is deprecated - use --swig-opts=-c++")
|
||||
|
||||
if self.swig_cpp or ('-c++' in self.swig_opts):
|
||||
if self.swig_cpp or ('-c++' in self.swig_opts) or \
|
||||
('-c++' in extension.swig_opts):
|
||||
target_ext = '.cpp'
|
||||
else:
|
||||
target_ext = '.c'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue