From 4d09159b0a36ae1b865004ed7101303a39ca6f9b Mon Sep 17 00:00:00 2001 From: Koji Takeda Date: Fri, 26 Dec 2025 13:56:20 +0900 Subject: [PATCH] Update wolfSSL configure for cross compile --- wolfSSL/src-ja/chapter02.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wolfSSL/src-ja/chapter02.md b/wolfSSL/src-ja/chapter02.md index fdf9e2a4..5f079638 100644 --- a/wolfSSL/src-ja/chapter02.md +++ b/wolfSSL/src-ja/chapter02.md @@ -320,15 +320,15 @@ Cortex-A53を搭載したRaspberry Pi用の`Makefile.common`変更例を示し ```sh ./configure \ - --host=arm-non-eabi \ + --host=arm-none-eabi \ CC=arm-none-eabi-gcc \ AR=arm-none-eabi-ar \ STRIP=arm-none-eabi-strip \ RANLIB=arm-none-eabi-ranlib \ - --prefix=/path/to/build/wolfSSL-arm \ + --prefix=/path/to/build/wolfssl-arm \ CFLAGS="-march=armv8-a --specs=nosys.specs \ - -DHAVE_PK_CALLBACKS -DWOLFSSL_USER_IO -DNO_WRITEV" \ - --disable-filesystem --enable-fastmath \ + -DHAVE_PK_CALLBACKS -DWOLFSSL_USER_IO -DWOLFSSL_NO_SOCK -DNO_WRITEV" \ + --disable-filesystem --enable-crypttests \ --disable-shared make make install