Files
MINGW-packages/mingw-w64-python/0016-sysconfig-MINGW-build-extensions-with-GCC.patch
2025-04-18 07:39:35 +02:00

23 lines
674 B
Diff

From da21e492b2b6b0cf8edde57344eb249f830ad2a1 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 016/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 7a7c0e2..ed24aeb 100644
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -800,6 +800,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():