Skip to content

Commit

Permalink
Fix missing toolchain include paths for project generator // Resolve #…
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Nov 1, 2017
1 parent 675cd45 commit 86de58b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ PlatformIO 3.0
* Fixed issue with "IOError" in VSCode when processing a project
* Fixed platforms, packages, and libraries updating behind proxy
(`issue #1061 <https://github.com/platformio/platformio-core/issues/1061>`_)
* Fixed missing toolchain include paths for project generator
(`issue #1154 <https://github.com/platformio/platformio-core/issues/1154>`_)

3.4.1 (2017-08-02)
~~~~~~~~~~~~~~~~~~

* Pre/Post extra scripting for advanced control of PIO Build System
(`issue #891 <https://github.com/platformio/platformio-core/issues/891>`_)
* New `lib_archive <http://docs.platformio.org/page/projectconf/section_env_library.html#lib-archive>`_
option to control library archiving and linking behaviour
option to control library archiving and linking behavior
(`issue #993 <https://github.com/platformio/platformio-core/issues/993>`_)
* Add "inc" folder automatically to CPPPATH when "src" is available (works for project and library)
(`issue #1003 <https://github.com/platformio/platformio-core/issues/1003>`_)
Expand Down
2 changes: 1 addition & 1 deletion docs
Submodule docs updated 2 files
+1 −0 articles.rst
+36 −4 faq.rst
2 changes: 2 additions & 0 deletions platformio/builder/tools/pioide.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ def dump_includes(env):
toolchain_dir = util.glob_escape(p.get_package_dir(name))
toolchain_incglobs = [
join(toolchain_dir, "*", "include*"),
join(toolchain_dir, "*", "include", "c++", "*"),
join(toolchain_dir, "*", "include", "c++", "*", "*-*-*"),
join(toolchain_dir, "lib", "gcc", "*", "*", "include*")
]
for g in toolchain_incglobs:
Expand Down
3 changes: 1 addition & 2 deletions platformio/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import atexit
import platform
import Queue
import sys
import threading
from collections import deque
from os import getenv
Expand Down Expand Up @@ -109,7 +108,7 @@ def _filter_args(items):
self['cd1'] = util.get_systype()
self['cd2'] = "Python/%s %s" % (platform.python_version(),
platform.platform())
self['cd3'] = " ".join(_filter_args(sys.argv[1:]))
# self['cd3'] = " ".join(_filter_args(sys.argv[1:]))
self['cd4'] = 1 if (not util.is_ci()
and (caller_id or not util.is_container())) else 0
if caller_id:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ usedevelop = True
deps =
isort
flake8
yapf<0.18
yapf
pylint
pytest
commands = python --version
Expand Down

0 comments on commit 86de58b

Please sign in to comment.