I am new in C and working on a C project that uses make files for compiling. I have done some minimal changes to a file and tried to compile it using make. However, I am getting the
compilation error --
-W -Wall -Wcast-align -Wcast-qual -Wchar-subscripts -Wcomment -Werror -Wformat -Wimplicit -Winline -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wparentheses -Wpointer-arith -Wreturn-type -Wshadow -Wstrict-prototypes -Wswitch -Wtrigraphs -Wuninitialized -Wunused -Wwrite-strings -MD -MF main.d -MT main.o -I../../../../../src/pfe-shared/include -I../../../../../src/pfe-shared/toolkits -I../../../../../src/bsd/sys -I../../../../../src/junos/include -c ../../../../../src/junos/lib/liblicense/test/main.c
*** Error code 1
Stop.
bmake: stopped in /d/devsharma/RELEASE_112_THROTTLE/src/junos/lib/liblicense/test
I have made the changes in the file /test/main.c so I can very well guess that it is an issue with this file but the compiler does-not say any specific compilation problem for me to fix. How do I resolve this. Any idea would be appreciated?
gcc -W -Wall ............. -c ../../../../../src/junos/lib/liblicense/test/main.c– ks1322 Aug 26 '11 at 11:27