From 73c588456c60b1ed33de15974babba59e8792b2f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 15 May 2019 21:09:39 -0400 Subject: [PATCH] Add MSYS/MinGW compiling support on Windows Tested successfully with MSYS2 with the following command: scons platform=windows generate_bindings=yes use_mingw=1 bits=64 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 116a3d74..68622cea 100644 --- a/SConstruct +++ b/SConstruct @@ -16,7 +16,7 @@ if sys.platform.startswith('linux'): host_platform = 'linux' elif sys.platform == 'darwin': host_platform = 'osx' -elif sys.platform == 'win32': +elif sys.platform == 'win32' or sys.platform == 'msys': host_platform = 'windows' else: raise ValueError(