From 4d794d63b5ac3c667446c74d367fe4eb7f1e2caf Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Tue, 21 Jan 2020 15:09:41 -0800 Subject: python: add `debug` variant to enable pydebug (#14584) --- var/spack/repos/builtin/packages/python/package.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/python/package.py b/var/spack/repos/builtin/packages/python/package.py index 151b56bb8d..bdc4a64019 100644 --- a/var/spack/repos/builtin/packages/python/package.py +++ b/var/spack/repos/builtin/packages/python/package.py @@ -70,6 +70,11 @@ class Python(AutotoolsPackage): 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 # See http://bugs.python.org/issue29846 variant('shared', default=sys.platform != 'darwin', @@ -242,6 +247,11 @@ class Python(AutotoolsPackage): spec.satisfies('@2.7.12:2.8,3.5.2:', strict=True): config_args.append('--with-icc') + if '+debug' in spec: + config_args.append('--with-pydebug') + else: + config_args.append('--without-pydebug') + if '+shared' in spec: config_args.append('--enable-shared') else: -- cgit v1.2.3-60-g2f50