From 8a21f2430947e2d2b7c12cd92b9e65e9a02482c8 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Sun, 12 Nov 2017 02:00:42 +0100 Subject: [PATCH] Default to the mingw toolchain when building the simulator on Windows --- build/platform.simulator.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/platform.simulator.mak b/build/platform.simulator.mak index 55a857b80..626366aa2 100644 --- a/build/platform.simulator.mak +++ b/build/platform.simulator.mak @@ -1,4 +1,7 @@ TOOLCHAIN ?= host-gcc +ifeq ($(OS),Windows_NT) + TOOLCHAIN = mingw +endif USE_LIBA = 0 EXE = elf OS_WITH_ONBOARDING_APP ?= 0