> From: <[email protected]> > Date: Thu, 24 Nov 2011 17:05:59 +0100 > > In some projects (but not in all) when i compile it make detects warning as > errors and stops the build, but i dont' want this!
The error comes from the compiler: > *** c:\_da\solista\germania.c(751) W1352C: initialization incompatible > pointer types from `const SELEZIONE1*' to `const struct > StrutturaSelezione4*const ': `Germania_L01' This error causes the compiler to exit with exit code 1, and Make then stops the build: > make: *** [Solista/germania.o] Error 1 If you don't want Make to stop on error, invoke it with -k switch. _______________________________________________ Help-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-make
