Quellcode durchsuchen

Remove mingw until microsoft fixes the issue

Maxime Griot vor 4 Jahren
Ursprung
Commit
6cab4a7c91
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      packages/m/mimalloc/xmake.lua

+ 2 - 2
packages/m/mimalloc/xmake.lua

@@ -11,13 +11,13 @@ package("mimalloc")
 
     add_deps("cmake")
 
-    if is_plat("windows", "mingw") then
+    if is_plat("windows") then
         add_syslinks("advapi32")
     elseif is_plat("linux") then
         add_syslinks("pthread")
     end
 
-    on_install("windows", "mingw", "linux", function (package)
+    on_install("windows", "linux", function (package)
         local configs = {}
         table.insert(configs, "-DMI_OVERRIDE=" .. "OFF")
         table.insert(configs, "-DMI_BUILD_STATIC=" .. (package:config("shared") and "OFF" or "ON"))