On 06 March 2006 15:09, Agnes Bousquier wrote: > Hello, > > I am trying to compile the C++ program included. Unfortunately, when I > type : > "g++ -o avcodec_sample avcodec_sample.cpp -lavformat -lavcodec -lz", gcc > outputs many errors telling that it can not find many functions and > variables, after telling : > avcodec_sample.cpp:20:21: avcodec.h : No such file or directory > avcodec_sample.cpp:21:22: avformat.h : No such file or directory > > Can anybody explain me why it can not find these files, although the > path in the "#include" part is right?
What 'path in the #include part'? Your example just says #include <avcodec.h> #include <avformat.h> I don't see any path in that. You had better use a -I option to tell the compiler where the include files are. cheers, DaveK -- Can't think of a witty .sigline today.... -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/