Skip to content

Commit 3f0ab7e

Browse files
committed
Configure wolfSSL before make in the fullstack setup script
1 parent 28abe0b commit 3f0ab7e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • fullstack/freertos-wolfip-wolfssl-https

fullstack/freertos-wolfip-wolfssl-https/setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ cd ../../../../
2121
if [ ! -d "wolfssl" ]; then
2222
git clone --depth=1 https://github.com/wolfSSL/wolfssl.git
2323
cd wolfssl
24+
# a git clone ships no Makefile; only release tarballs are pre-configured
25+
./autogen.sh
26+
./configure --enable-tls13 --enable-static
2427
make
2528
sudo make install
2629
cd ..

0 commit comments

Comments
 (0)