Issue
The problem is that the same code that compiles well on Windows, is unable to compile on Ubuntu. Every time I get this error:
cc1: warnings being treated as errors
Now, it's big code base and I don't like fix all the warnings.
Is there a way I can compile successfully in spite of the warnings?
Solution
Thanks for all the helpful suggestions. I finally made sure that there were no warnings in my code, but again was getting this warning from SQLite 3:
Assuming signed overflow does not occur when assuming that (X - c) <= X is always true
which I fixed by adding the CFLAG -fno-strict-overflow.
Answered By - Saurabh Verma Answer Checked By - David Goodson (WPSolving Volunteer)