summarylogtreecommitdiffstats
path: root/0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch
diff options
context:
space:
mode:
authoratomlong2021-08-28 11:19:04 +0800
committeratomlong2021-08-28 13:15:13 +0800
commit89a67c05174951d172252b1db96ff93cc4ec4bcd (patch)
treed8c39fa79b201cf9aea28c51e7446a252ed8fee4 /0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch
parentcf8d8d8771493a2aa8370ed323d06dc733a84181 (diff)
downloadaur-89a67c05174951d172252b1db96ff93cc4ec4bcd.tar.gz
Update to 3.9.6
Diffstat (limited to '0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch')
-rw-r--r--0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch b/0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch
new file mode 100644
index 000000000000..14ca139a1b50
--- /dev/null
+++ b/0062-cygwinccompiler-dont-strip-modules-if-pydebug.patch
@@ -0,0 +1,29 @@
+From 01a2e7616c9e8d8cb554a125ef768eb010275dee Mon Sep 17 00:00:00 2001
+From: Ray Donnelly <mingw.android@gmail.com>
+Date: Thu, 17 Jun 2021 18:52:05 +0530
+Subject: [PATCH 062/N] cygwinccompiler dont strip modules if pydebug
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Co-authored-by: Алексей <alexey.pawlow@gmail.com>
+---
+ Lib/distutils/cygwinccompiler.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py
+index 0bda7a3..09b6eda 100644
+--- a/Lib/distutils/cygwinccompiler.py
++++ b/Lib/distutils/cygwinccompiler.py
+@@ -236,7 +236,7 @@ class CygwinCCompiler(UnixCCompiler):
+ # (On my machine: 10KiB < stripped_file < ??100KiB
+ # unstripped_file = stripped_file + XXX KiB
+ # ( XXX=254 for a typical python extension))
+- if not debug:
++ if not debug and not hasattr(sys, 'gettotalrefcount'):
+ extra_preargs.append("-s")
+
+ UnixCCompiler.link(self, target_desc, objects, output_filename,
+--
+2.32.0
+