Local development: how to reduce compiler output verbosity?

Dear all,

For reasons I switched from using the web IDE to local development on a Mac (with Sublime Text 2, by the way). Now, even if I change nothing in application.cpp, a compiler run outputs 20 lines of code.

Is there a way to keep useful error messages, but to slim down the output somehow? I am willing to edit makefiles :smile: Thank you very much.

Would just putting it all into a log file work better for you?

make clean all >& foo.log

1 Like

Thank you, this removes all output. Isn’t there a way to inhibit the output of config options (I am guessing here) beginning with … arm-none-eabi-g++ -g3 -gdwarf-2 -Os ...?