contrib/python-zstandard/setup_zstd.py
branchstable
changeset 38186 c0081d3e1598
parent 37495 b1fb341d8a61
child 40121 73fef626dae3
--- a/contrib/python-zstandard/setup_zstd.py	Wed Jun 06 21:19:42 2018 +0800
+++ b/contrib/python-zstandard/setup_zstd.py	Wed Jun 06 09:14:33 2018 -0700
@@ -123,6 +123,8 @@
         compiler_type = 'unix'
     elif compiler.compiler_type == 'msvc':
         compiler_type = 'msvc'
+    elif compiler.compiler_type == 'mingw32':
+        compiler_type = 'mingw32'
     else:
         raise Exception('unhandled compiler type: %s' %
                         compiler.compiler_type)
@@ -141,7 +143,7 @@
         extra_args.append('-DZSTD_LEGACY_SUPPORT=1')
 
     if warnings_as_errors:
-        if compiler_type == 'unix':
+        if compiler_type in ('unix', 'mingw32'):
             extra_args.append('-Werror')
         elif compiler_type == 'msvc':
             extra_args.append('/WX')