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?

link|improve this question

1  
There is not enough information about the error, would you mind posting the code you modified ? – Pierre Aug 26 '11 at 10:56
Well i only added a printf statement for debugging purposes...i.e. printf ("xsacas "); it looks innocuous. The compiler is not giving any specific error message which is way I am confused. Any help is appreciated. – user496934 Aug 26 '11 at 11:03
Go back to the original version of main.c and make sure that you can still compile OK. – Paul R Aug 26 '11 at 11:10
already tried that by reverting to the original but when I add the printf it fails to compile. – user496934 Aug 26 '11 at 11:13
4  
Try to compile without bmake, but with gcc only. gcc -W -Wall ............. -c ../../../../../src/junos/lib/liblicense/test/main.c – ks1322 Aug 26 '11 at 11:27
show 5 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.