From f5dd8ae45471daa465a01cd3daae22fb18be044b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 7 Oct 2015 17:37:45 -0700 Subject: [PATCH] Add .exe on the end of the windows gcc --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7b6973b..05f1936 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -574,7 +574,7 @@ impl Config { if target.contains("msvc") { msvc.to_string() } else { - gnu.to_string() + format!("{}.exe", gnu) } } else if target.contains("android") { format!("{}-{}", target, gnu)