Hello everyone,
I am using Petalinux 2014.4 for Zedboard.
I want to add a new app which references openssl library. Using petalinux-create I have created a sample app, which I am modifying. I need to do something like
#include <openssl/sha.h>
So on compilation I get 'undefined reference to `SHA1_Init', undefined reference to `SHA1_Update' etc.
I added openssl binaries through petalinux-config, but I understand this is not enough.
How do I specify in my make file, the external libary needed for my app?
I am new to Linux developement, I have been primarily been doing microcontroller development using easy UI tools. Can anyone point me to few docs which will explain using petalinux makefiles?