When compiling project from the command line I call these two commands:
What to do if I want to turn off warnings, b/c the output is not very easy to read?Code:call bldmake bldfiles call abld build gcce udeb
When compiling project from the command line I call these two commands:
What to do if I want to turn off warnings, b/c the output is not very easy to read?Code:call bldmake bldfiles call abld build gcce udeb
Krzysztof Kucharewicz
Warnings are not generated just for fun, they should better be fixed (for example it is not impossible adding an empty line at the end of header files where Nokia guys have failed doing so).
Anyway, you certainly know where the compiler is, thus you can visit epoc32\gcc\bin folder, type cpp --help, and it will turn out that -w switch disables warning messages.
Checking the related makefile (gcce.make in epoc32\build\...) shows where the config file isand there you can find a section controlling the warning/error outputsOriginally Posted by gcce.make
so you can - for example - comment the old CC_WARNINGS_CONTROL_OPTION line, and create a new one containing a simple -wOriginally Posted by gcce.mk