When I build using a Makefile I add -Wall -g to my gcc args to get warnings.
So when I build this code:
#include <stdio.h>
int main()
{
}
I get this warning:
main.c: In function ‘main’:
main.c:10: warning: control reaches end of non-void function
However when I build the same code in XCode I don't see any warnings.
I think XCode is using LLVM instead of GCC but there must be an equivelant. How can I turn this on in XCode?