mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Fix compilation bug on Windows with installed MSVC
This commit is contained in:
@ -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)
|
||||
|
@ -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,
|
||||
|
||||
|
Reference in New Issue
Block a user