forked from platformio/platformio-core
Remove debug code
This commit is contained in:
@ -7,6 +7,8 @@ PlatformIO 2.0
|
|||||||
2.8.5 (2016-02-??)
|
2.8.5 (2016-02-??)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Improved handling of String-based ``CPPDEFINES`` passed to extra ``build_flags``
|
||||||
|
(`issue #526 <https://github.com/platformio/platformio/issues/526>`_)
|
||||||
* Fixed issue with incorrect handling of user's build flags where the base flags
|
* Fixed issue with incorrect handling of user's build flags where the base flags
|
||||||
were passed after user's flags to GCC compiler
|
were passed after user's flags to GCC compiler
|
||||||
(`issue #528 <https://github.com/platformio/platformio/issues/528>`_)
|
(`issue #528 <https://github.com/platformio/platformio/issues/528>`_)
|
||||||
|
@ -100,7 +100,6 @@ def ProcessFlags(env, flags):
|
|||||||
if not f:
|
if not f:
|
||||||
continue
|
continue
|
||||||
parsed_flags = env.ParseFlags(str(f))
|
parsed_flags = env.ParseFlags(str(f))
|
||||||
print parsed_flags
|
|
||||||
for flag in parsed_flags.pop("CPPDEFINES"):
|
for flag in parsed_flags.pop("CPPDEFINES"):
|
||||||
if not isinstance(flag, list):
|
if not isinstance(flag, list):
|
||||||
env.Append(CPPDEFINES=flag)
|
env.Append(CPPDEFINES=flag)
|
||||||
|
Reference in New Issue
Block a user