See https://github.com/msys2-contrib/cpython-mingw/pull/110 update-patches: remove git version signature to keep the diff smaller
23 lines
674 B
Diff
23 lines
674 B
Diff
From 5db8a56abdeb66ebcf071b061738984cd7c44bbb Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Tue, 21 Sep 2021 20:52:42 +0200
|
|
Subject: [PATCH 022/N] sysconfig: MINGW build extensions with GCC
|
|
|
|
---
|
|
Lib/sysconfig.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
|
|
index eadb99c..6381bcd 100644
|
|
--- a/Lib/sysconfig.py
|
|
+++ b/Lib/sysconfig.py
|
|
@@ -709,6 +709,8 @@ def get_platform():
|
|
|
|
"""
|
|
if os.name == 'nt':
|
|
+ if 'GCC' in sys.version:
|
|
+ return 'mingw'
|
|
if 'amd64' in sys.version.lower():
|
|
return 'win-amd64'
|
|
if '(arm)' in sys.version.lower():
|