From e62d683d5c46baf5b8904e5ed4beac515e028782 Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Thu, 25 Jan 2024 16:50:24 +0800 Subject: [PATCH] Update cross-build.sh --- contrib/cross-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/cross-build.sh b/contrib/cross-build.sh index 35b6526c8a..8567c5e99c 100755 --- a/contrib/cross-build.sh +++ b/contrib/cross-build.sh @@ -155,9 +155,9 @@ fi # ftd2xx copy to sysroot if [ -d $FTD2XX_SRC ] ; then - FTD2XX_LIB_SRC=${FTD2XX_SRC}/Static/amd64 + FTD2XX_LIB_SRC=${FTD2XX_SRC}/amd64 if [[ "$HOST_TRIPLET" == *"w32"* ]] ; then - FTD2XX_LIB_SRC=${FTD2XX_SRC}/Static/i386 + FTD2XX_LIB_SRC=${FTD2XX_SRC}/i386 fi cp -f ${FTD2XX_LIB_SRC}/* $SYSROOT/usr/lib/ fi