Topic: Issues with ChaCha20_Poly1305 Header Inclusion
I'm cross-compiling for an arm-none-eabi-gcc environment and keep getting the error "undefined reference to wc_ChaCha20Poly1305_Decrypt". My c file for my project code includes the headers in this order:
#include <wolfssl/options.h>
#include <wolfssl/wolfcrypt/settings.h>
#include <wolfssl/wolfcrypt/chacha20_poly1305.h>
This is what I'm passing to ./configure:
./configure --enable-static --disable-shared --enable-psk --disable-crypttests --disable-examples \
--host=arm-none-eabi \
CC=arm-none-eabi-gcc LD=arm-none-eabi-ld \
AR=arm-none-eabi-ar RANLIB=arm-none-eabi-ranlib \
CFLAGS="-DNO_WOLFSSL_DIR -DWOLFSSL_USER_IO -DNO_WRITEV -mcpu=cortex-m4 -mthumb -Os -specs=rdimon.specs" \
CPPFLAGS="-I./" \
C_EXTRA_FLAGS="-DHAVE_CHACHA -DHAVE_POLY1305 -DTIME_T_NOT_64BIT"
In my project's makefile, I'm linking like this:
PROJ_LDFLAGS += -L/usr/local/lib -lwolfssl
Any ideas as to what I'm doing wrong?