Fix compilation bug on Windows with installed MSVC

This commit is contained in:
Ivan Kravets
2014-12-10 23:01:48 +02:00
parent 3157ceaa47
commit 4f56bf66db
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,8 @@ Release History
* Added new setting `enable_prompts <http://docs.platformio.ikravets.com/en/latest/userguide/cmd_settings.html>`_
and allowed to disable all PlatformIO prompts (useful for cloud compilers)
(`issue #34 <https://github.com/ivankravets/platformio/issues/34>`_)
* Fixed compilation bug on Windows with installed MSVC (`issue #18 <https://github.com/ivankravets/platformio/issues/18>`_)
0.9.1 (2014-12-05)

View File

@ -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,