From 3c2a7d5c177662ab0ba02d5ff58011a6abce87de Mon Sep 17 00:00:00 2001
From: guowenxue <guowenxue@gmail.com>
Date: Mon, 06 Nov 2023 14:20:30 +0800
Subject: [PATCH] Add lvgl build shell script and patch file

---
 openssl/build.sh |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/openssl/build.sh b/openssl/build.sh
index 79ee216..244da93 100755
--- a/openssl/build.sh
+++ b/openssl/build.sh
@@ -157,10 +157,11 @@
 
 	do_export
 
-	./Configure threads -shared -no-zlib --prefix=$PREFIX_PATH --openssldir=$PREFIX_PATH linux-armv4
+	CROSS_COMPILE=${CROSSTOOL} ./Configure linux-armv4 \
+		threads -shared -no-zlib --prefix=$PREFIX_PATH --openssldir=$PREFIX_PATH
 	check_result "ERROR: configure ${LIB_NAME} failure"
 
-	make && make install
+	make -j ${JOBS} && make install
 	check_result "ERROR: compile ${LIB_NAME} failure"
 }
 

--
Gitblit v1.9.1