2019-04-03 01:43 AM
Says in the title, where can i find the flag to remove warnings treated as errors
Solved! Go to Solution.
2019-04-03 02:12 AM
In your config/gcc/app.mk try specifying the following -Wno-error in your user_cflags
# Optional additional compiler flags
user_cflags := -DUSE_BPP=16 -Wno-error
2019-04-03 01:59 AM
Hi @pmppires,
For which compiler?
/Martin
2019-04-03 02:02 AM
Hi, i'm using the compiler that comes with touchgfx so im guessing its mingw... i just need to find the flag in the makefile that enables that, but i've skimmed all the makes i could find in the project and couldnt find anything
2019-04-03 02:12 AM
In your config/gcc/app.mk try specifying the following -Wno-error in your user_cflags
# Optional additional compiler flags
user_cflags := -DUSE_BPP=16 -Wno-error
2019-04-03 08:22 AM
i guess that did the trick! thanks a lot
2019-04-04 12:46 AM
No problem! :)