python: add debug
variant to enable pydebug (#14584)
This commit is contained in:
parent
796722aeee
commit
4d794d63b5
@ -70,6 +70,11 @@ class Python(AutotoolsPackage):
|
|||||||
|
|
||||||
extendable = True
|
extendable = True
|
||||||
|
|
||||||
|
variant(
|
||||||
|
'debug', default=False,
|
||||||
|
description="debug build with extra checks (this is high overhead)"
|
||||||
|
)
|
||||||
|
|
||||||
# --enable-shared is known to cause problems for some users on macOS
|
# --enable-shared is known to cause problems for some users on macOS
|
||||||
# See http://bugs.python.org/issue29846
|
# See http://bugs.python.org/issue29846
|
||||||
variant('shared', default=sys.platform != 'darwin',
|
variant('shared', default=sys.platform != 'darwin',
|
||||||
@ -242,6 +247,11 @@ def configure_args(self):
|
|||||||
spec.satisfies('@2.7.12:2.8,3.5.2:', strict=True):
|
spec.satisfies('@2.7.12:2.8,3.5.2:', strict=True):
|
||||||
config_args.append('--with-icc')
|
config_args.append('--with-icc')
|
||||||
|
|
||||||
|
if '+debug' in spec:
|
||||||
|
config_args.append('--with-pydebug')
|
||||||
|
else:
|
||||||
|
config_args.append('--without-pydebug')
|
||||||
|
|
||||||
if '+shared' in spec:
|
if '+shared' in spec:
|
||||||
config_args.append('--enable-shared')
|
config_args.append('--enable-shared')
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user