Disable warnings being treated as errors(cc1.exe)
You need to remove -Werror
from CFLAGS
, CPPFLAGS
etc.; these are usually set in Makefile's or build scripts.
However, I'd strongly advice to fix the actual warnings instead, which will produce more stable and error-free code.