I just downloded wolfSSL library but I dont know how to build it using VSCode. What changes do I have to make in cmake file? Or is it something else? Can someone please guide me.
I tried this instructions for using GCC-ARM: https://github.com/wolfSSL/wolfssl/tree/master/IDE/GCC-ARM but it still couldnt compile.
# Toolchain location and prefix
#TOOLCHAIN =
TOOLCHAIN ?=C:/VSARM/armcc/10 2021.10/bin/arm-none-eabi-
# Architecture
#ARCHFLAGS ?= -mcpu=cortex-m4 -mthumb -mabi=aapcs -DUSE_WOLF_ARM_STARTUP
ARCHFLAGS = -mcpu=cortex-m0 -mthumb -mabi=aapcs -DUSE_WOLF_ARM_STARTUP
#ARCHFLAGS = -mcpu=cortex-r5 -mthumb -mabi=aapcs
#ARCHFLAGS = -mcpu=cortex-a53 -mthumb -mabi=aapcs
p.s. I did my VSCode setup based on shawn haymle's guide for rpi pico.