You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To solve the issue #2170 and other problems as in #17 (invalid paths detection, or not necessary paths found), I added a new makefile target to extract search paths, and compiler settings too, directly from components / esp-idf configurations.
The new target is suitable to be called from the Eclipse built-in setting provider.
I'm dealing now on eclipse_make.py file, because it's output message "running make ..." cause a false include path detection.
Is there a way to suppress that output without changing the pyton code ?
(note: I cannot suppress the standard and error outputs because them are used by the provider).
Regards
The text was updated successfully, but these errors were encountered:
FayeY
changed the title
eclipse for windows, makefile & eclipse_make.py
[TW#25611] eclipse for windows, makefile & eclipse_make.py
Aug 20, 2018
@dsptech Probably easiest would be to change Python code to either not print the full path, not print this message at all, or replace slashes in the path with something else. Another option might be to print to stderr instead — perhaps this will not confuse Eclipse build output parser?
Hi @igrr ,
I agree, any output to stderr will continue to confuse the parser. Suppressing the message at all is the better way.
My original intention was to reduce the changes in the library due the increasing of the required checks at every update but, as you said, changing the pyton code is the easiest way.
So, I will do it.
NOT AN ERROR OR SYSTEM ISSUE
To solve the issue #2170 and other problems as in #17 (invalid paths detection, or not necessary paths found), I added a new makefile target to extract search paths, and compiler settings too, directly from components / esp-idf configurations.
The new target is suitable to be called from the Eclipse built-in setting provider.
I'm dealing now on eclipse_make.py file, because it's output message "running make ..." cause a false include path detection.
Is there a way to suppress that output without changing the pyton code ?
(note: I cannot suppress the standard and error outputs because them are used by the provider).
Regards
The text was updated successfully, but these errors were encountered: