mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Fix missing toolchain include paths for project generator // Resolve #1154
This commit is contained in:
@ -15,6 +15,8 @@ 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)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
@ -22,7 +24,7 @@ PlatformIO 3.0
|
||||
* 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>`_)
|
||||
|
2
docs
2
docs
Submodule docs updated: 0ab7624599...1ceb1ce707
@ -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:
|
||||
|
@ -15,7 +15,6 @@
|
||||
import atexit
|
||||
import platform
|
||||
import Queue
|
||||
import sys
|
||||
import threading
|
||||
from collections import deque
|
||||
from os import getenv
|
||||
@ -109,7 +108,7 @@ class MeasurementProtocol(TelemetryBase):
|
||||
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:
|
||||
|
Reference in New Issue
Block a user