mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Added 'debug' option (just there for 'build_ext' and 'build_lib' commands
to fallback to if the user doesn't set it for those commands.
This commit is contained in:
parent
386b84439f
commit
324620015d
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,8 @@ class Build (Command):
|
|||
"directory for platform-shared files"),
|
||||
('build-platlib=', 'p',
|
||||
"directory for platform-specific files"),
|
||||
('debug', 'g',
|
||||
"compile extensions and libraries with debugging information"),
|
||||
]
|
||||
|
||||
def set_default_options (self):
|
||||
|
@ -28,6 +30,7 @@ class Build (Command):
|
|||
# (unless overridden by the user or client)
|
||||
self.build_lib = None
|
||||
self.build_platlib = None
|
||||
self.debug = None
|
||||
|
||||
def set_final_options (self):
|
||||
# 'build_lib' and 'build_platlib' just default to 'lib' and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue