blob: 3d179eddf45fdb90ceae5b6f1cb16c0e3b4e66eb (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
# wolfssl (for GitHub workflow)
git clone --depth 1 https://github.com/wolfSSL/wolfssl
cd wolfssl
autoreconf -i
./configure --prefix=$PWD/build --enable-all --enable-quic
make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)"
make install
|