Redfoxmoon / cross / slibtool

Forked from cross/slibtool a year ago
Clone

ae6854 slbt_init_host_params(): flavor detection: associate -windows- with mingw.

Authored and Committed by midipix 6 years ago
    slbt_init_host_params(): flavor detection: associate -windows- with mingw.
    
        
file modified
+2 -0
src/driver/slbt_driver_ctx.c CHANGED
@@ -561,6 +561,8 @@ static int slbt_init_host_params(
561
561
host->flavor = "mingw";
562
562
else if ((dash && !strcmp(dash,"-mingw64")) || strstr(machine,"-mingw64-"))
563
563
host->flavor = "mingw";
564
+ else if ((dash && !strcmp(dash,"-windows")) || strstr(machine,"-windows-"))
565
+ host->flavor = "mingw";
564
566
else {
565
567
host->flavor = "default";
566
568
cfgmeta->flavor = "fallback, unverified";