Dave Korn a écrit :
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
Thank you for your reply. You showed me where I did wrong : I was
modifying a file, and compiling another... Please excuse me for my
stupidity.
Best regards,
Agnès
--
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/