From 4f56bf66dbd1019ec8f93d874a572d6ab3433e15 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 10 Dec 2014 23:01:48 +0200 Subject: [PATCH] Fix compilation bug on Windows with installed MSVC --- HISTORY.rst | 2 ++ platformio/builder/main.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 42cb63a0..c345cb02 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,6 +8,8 @@ Release History * Added new setting `enable_prompts `_ and allowed to disable all PlatformIO prompts (useful for cloud compilers) (`issue #34 `_) +* Fixed compilation bug on Windows with installed MSVC (`issue #18 `_) + 0.9.1 (2014-12-05) diff --git a/platformio/builder/main.py b/platformio/builder/main.py index 5fcfbed3..cc1c0da8 100644 --- a/platformio/builder/main.py +++ b/platformio/builder/main.py @@ -50,7 +50,8 @@ commonvars.AddVariables( ) DefaultEnvironment( - tools=["default", "platformio"], + # TODO Temporary fix for the issue #18 + tools=["default", "gcc", "g++", "ar", "gnulink", "platformio"], toolpath=[join("$PIOBUILDER_DIR", "tools")], variables=commonvars,