I want to use the freertos_demo that is part of StellarisWare /TivaWare in combination with wolfSSL library but I find it difficult to read the Makefile (actually the makedefs files).
I downloaded and compiled wolfSSL according to the manual. Now in /usr/local/lib there are the following files:
- /usr/local/lib//libwolfssl.la
- /usr/local/lib//libwolfssl.so
- /usr/local/lib//libwolfssl.so.3
- /usr/local/lib//libwolfssl.so.3.1.0
Now I open makedefs from the StellarisWare root directory and added the folling code to line 160:
LIBS=-lwolfssl
Further, I modified lines 246 and 252 which now state the following (both lines are identical; basically I only added '${LIBS}'
):
'${LIBM}' '${LIBC}' '${LIBGCC}' '${LIBS}';
However, when I go to the blinky sub-directory and perform a "make clean; make", I get the following error:
arm-none-eabi-ld: cannot find -lwolfssl
What am I missing?
Best