forked from platformio/platformio-core
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>`_
|
* 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)
|
and allowed to disable all PlatformIO prompts (useful for cloud compilers)
|
||||||
(`issue #34 <https://github.com/ivankravets/platformio/issues/34>`_)
|
(`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)
|
0.9.1 (2014-12-05)
|
||||||
|
@ -50,7 +50,8 @@ commonvars.AddVariables(
|
|||||||
)
|
)
|
||||||
|
|
||||||
DefaultEnvironment(
|
DefaultEnvironment(
|
||||||
tools=["default", "platformio"],
|
# TODO Temporary fix for the issue #18
|
||||||
|
tools=["default", "gcc", "g++", "ar", "gnulink", "platformio"],
|
||||||
toolpath=[join("$PIOBUILDER_DIR", "tools")],
|
toolpath=[join("$PIOBUILDER_DIR", "tools")],
|
||||||
variables=commonvars,
|
variables=commonvars,
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user