diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-01-11 19:27:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-11 19:27:23 -0500 |
commit | 1157cef04da91242a2a83d83e5e09f0c2cda0060 (patch) | |
tree | 61f74a6b16cd82fd807161062b085978323f94cb | |
parent | f26f26c3573741c2244a91e1e1ac9287d6733e0d (diff) | |
download | gen3uploader-1157cef04da91242a2a83d83e5e09f0c2cda0060.tar.gz gen3uploader-1157cef04da91242a2a83d83e5e09f0c2cda0060.tar.bz2 gen3uploader-1157cef04da91242a2a83d83e5e09f0c2cda0060.zip |
Edited wolfSSL configure flags in readme
The added configure flag causes wolfSSL to be built with support for elliptic curve ciphers, which may be needed for negotiating with many remote servers.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md index dfe121b..02dc519 100644 --- a/README.md +++ b/README.md | |||
@@ -16,7 +16,7 @@ In order to compile wolfSSL, first ensure your $DEVKITPPC environment variable i | |||
16 | 16 | ||
17 | ```bash | 17 | ```bash |
18 | ./autogen.sh | 18 | ./autogen.sh |
19 | ./configure --disable-shared CC=$DEVKITPPC/bin/powerpc-eabi-gcc --host=ppc --enable-singlethreaded RANLIB=$DEVKITPPC/bin/powerpc-eabi-gcc-ranlib CFLAGS="-DDEVKITPRO -DNO_WRITEV" --disable-examples --disable-crypttests | 19 | ./configure --disable-shared CC=$DEVKITPPC/bin/powerpc-eabi-gcc --host=ppc --enable-singlethreaded RANLIB=$DEVKITPPC/bin/powerpc-eabi-gcc-ranlib CFLAGS="-DDEVKITPRO -DNO_WRITEV" --disable-examples --disable-crypttests --enable-ecc |
20 | make | 20 | make |
21 | cp src/.libs/libwolfssl.a $GEN3UPLOADER/vendor/lib/ | 21 | cp src/.libs/libwolfssl.a $GEN3UPLOADER/vendor/lib/ |
22 | cp -r wolfssl $GEN3UPLOADER/vendor/include/ | 22 | cp -r wolfssl $GEN3UPLOADER/vendor/include/ |