Forum Discussion
Altera_Forum
Honored Contributor
19 years agoThats good, yes problem is solved.
Next error you are facing is for proper library path. Now your app code is getting compiled and it requires libpng.a path. Your libpng.a is static libarary which is now created. If you have done make install, then check in /usr/lib or /usr/local/lib dir for libpng.a /usr/local/lib is default path specified in configure.in, to change it you need to pass path while running configure, check ./configure --help. Once you get where libpng.a is installed (if other that default path), specify its path in LDFLAGS in your Makefile manually or though ./configure. Way to specify your lib path is -L /usr/local/lib/ ( L for leewood or london) in your Makefile LDFLAGS. " -L/home/leewood/uClinux-dist-test/lib/libnet " Check similar strings in your prints, you will get more hints. thanks, Ankur