2020-07-01 02:17 AM
Hi
GFX's designer tell me that all warnings would be treated as errors.
But it's part of the LibJPG library, and I can't change it.
Is there any way to get rid of this "error"?
I want to open a JPG image in the simulator and display it
Thank you very much, kind stranger.
Solved! Go to Solution.
2020-07-02 12:29 AM
Hi,
Designer uses the makefile located in your application at simulator/gcc/Makefile.
You'll find a list of compiler flags here. Remove "error" to not treat warnings as errors.
WARN = error all extra write-strings init-self cast-qual \
pointer-arith strict-aliasing format=2 uninitialized \
missing-declarations no-long-long no-unused-parameter \
no-variadic-macros no-format-extra-args \
no-conversion no-overloaded-virtual
2020-07-02 12:29 AM
Hi,
Designer uses the makefile located in your application at simulator/gcc/Makefile.
You'll find a list of compiler flags here. Remove "error" to not treat warnings as errors.
WARN = error all extra write-strings init-self cast-qual \
pointer-arith strict-aliasing format=2 uninitialized \
missing-declarations no-long-long no-unused-parameter \
no-variadic-macros no-format-extra-args \
no-conversion no-overloaded-virtual
2020-07-06 11:38 PM
Thank you very much for your kind help.
/korry
2020-07-06 11:56 PM
You're welcome!