diff --git a/build-android-arm64-v8a.sh b/build-android-arm64-v8a.sh index 3e204233..5cd779ac 100755 --- a/build-android-arm64-v8a.sh +++ b/build-android-arm64-v8a.sh @@ -42,7 +42,7 @@ fi echo "ANDROID_NDK: $ANDROID_NDK" sleep 1 -onnxruntime_version=v1.16.1 +onnxruntime_version=v1.16.2 if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/arm64-v8a/libonnxruntime.so ]; then if [ ! -d android-onnxruntime-libs ]; then diff --git a/build-android-armv7-eabi.sh b/build-android-armv7-eabi.sh index 185776f9..89c1f12e 100755 --- a/build-android-armv7-eabi.sh +++ b/build-android-armv7-eabi.sh @@ -43,7 +43,7 @@ fi echo "ANDROID_NDK: $ANDROID_NDK" sleep 1 -onnxruntime_version=v1.16.1 +onnxruntime_version=v1.16.2 if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/armeabi-v7a/libonnxruntime.so ]; then if [ ! -d android-onnxruntime-libs ]; then diff --git a/build-android-x86-64.sh b/build-android-x86-64.sh index 6a1aeaab..229b23c2 100755 --- a/build-android-x86-64.sh +++ b/build-android-x86-64.sh @@ -43,7 +43,7 @@ fi echo "ANDROID_NDK: $ANDROID_NDK" sleep 1 -onnxruntime_version=v1.16.1 +onnxruntime_version=v1.16.2 if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/x86_64/libonnxruntime.so ]; then if [ ! -d android-onnxruntime-libs ]; then diff --git a/build-android-x86.sh b/build-android-x86.sh index ff102309..2c9c31fc 100755 --- a/build-android-x86.sh +++ b/build-android-x86.sh @@ -43,7 +43,7 @@ fi echo "ANDROID_NDK: $ANDROID_NDK" sleep 1 -onnxruntime_version=v1.16.1 +onnxruntime_version=v1.16.2 if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/x86/libonnxruntime.so ]; then if [ ! -d android-onnxruntime-libs ]; then diff --git a/build-ios.sh b/build-ios.sh index 0af294fb..338e182a 100755 --- a/build-ios.sh +++ b/build-ios.sh @@ -5,7 +5,7 @@ set -e dir=build-ios mkdir -p $dir cd $dir -onnxruntime_version=1.16.1 +onnxruntime_version=1.16.2 if [ ! -f ios-onnxruntime/$onnxruntime_version/onnxruntime.xcframework/ios-arm64/onnxruntime.a ]; then if [ ! -d ios-onnxruntime ]; then diff --git a/cmake/onnxruntime-linux-aarch64-static.cmake b/cmake/onnxruntime-linux-aarch64-static.cmake index 0ca5643b..1e379b79 100644 --- a/cmake/onnxruntime-linux-aarch64-static.cmake +++ b/cmake/onnxruntime-linux-aarch64-static.cmake @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-linux-aarch64-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=9b25c41fc2158b345744984d154ca975c8a772c0eb90a0ccfbe2be147b438ae3") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-aarch64-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=47c3f93612d978900eee8201ab36ee16bfc63b2ccbb216014bea7fdf5930c526") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-aarch64-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.1.zip - /tmp/onnxruntime-linux-aarch64-static_lib-1.16.1.zip - /star-fj/fangjun/download/github/onnxruntime-linux-aarch64-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-linux-aarch64-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-static_lib-1.16.2.zip + /tmp/onnxruntime-linux-aarch64-static_lib-1.16.2.zip + /star-fj/fangjun/download/github/onnxruntime-linux-aarch64-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-aarch64.cmake b/cmake/onnxruntime-linux-aarch64.cmake index 616a35ed..7527d4c0 100644 --- a/cmake/onnxruntime-linux-aarch64.cmake +++ b/cmake/onnxruntime-linux-aarch64.cmake @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-linux-aarch64-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=f10851b62eb44f9e811134737e7c6edd15733d2c1549cb6ce403808e9c047385") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-aarch64-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-aarch64-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=4c1a21bd9c3acc17d4176a09b89602954f511a97d489be0cfdf356ebd789c409") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-aarch64-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-1.16.1.tgz - /tmp/onnxruntime-linux-aarch64-1.16.1.tgz - /star-fj/fangjun/download/github/onnxruntime-linux-aarch64-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-linux-aarch64-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-aarch64-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-linux-aarch64-1.16.2.tgz + /tmp/onnxruntime-linux-aarch64-1.16.2.tgz + /star-fj/fangjun/download/github/onnxruntime-linux-aarch64-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-arm-static.cmake b/cmake/onnxruntime-linux-arm-static.cmake index 0e7ed160..8c5d3f11 100644 --- a/cmake/onnxruntime-linux-arm-static.cmake +++ b/cmake/onnxruntime-linux-arm-static.cmake @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-linux-arm-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=7f01a4b025a2ae3bececd2ea1bbef6bdc0b5df43395f6a799123b74fa6180356") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-arm-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=688cadd403c41975d29a9659e2ffcbbcdb5c60de281084a7a93170be5b33e60e") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-arm-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-static_lib-1.16.1.zip - /tmp/onnxruntime-linux-arm-static_lib-1.16.1.zip - /star-fj/fangjun/download/github/onnxruntime-linux-arm-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-linux-arm-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-static_lib-1.16.2.zip + /tmp/onnxruntime-linux-arm-static_lib-1.16.2.zip + /star-fj/fangjun/download/github/onnxruntime-linux-arm-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-arm.cmake b/cmake/onnxruntime-linux-arm.cmake index d12f435b..27da9f33 100644 --- a/cmake/onnxruntime-linux-arm.cmake +++ b/cmake/onnxruntime-linux-arm.cmake @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-linux-arm-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-1.16.1.zip") -set(onnxruntime_HASH "SHA256=a668be37aa2eb5370e682f7599266c767b5327c1468203c372d8ceca4be1b585") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-arm-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-arm-1.16.2.zip") +set(onnxruntime_HASH "SHA256=3744a80478cba2c08d8a32a4d6a9dab45b47fd9bb4bde2ba1d1633bc00ca9990") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-arm-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-1.16.1.zip - /tmp/onnxruntime-linux-arm-1.16.1.zip - /star-fj/fangjun/download/github/onnxruntime-linux-arm-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-linux-arm-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-arm-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-linux-arm-1.16.2.zip + /tmp/onnxruntime-linux-arm-1.16.2.zip + /star-fj/fangjun/download/github/onnxruntime-linux-arm-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-x86_64-gpu.cmake b/cmake/onnxruntime-linux-x86_64-gpu.cmake index 6c02c9ae..486d8271 100644 --- a/cmake/onnxruntime-linux-x86_64-gpu.cmake +++ b/cmake/onnxruntime-linux-x86_64-gpu.cmake @@ -18,19 +18,19 @@ if(NOT SHERPA_ONNX_ENABLE_GPU) message(FATAL_ERROR "This file is for NVIDIA GPU only. Given SHERPA_ONNX_ENABLE_GPU: ${SHERPA_ONNX_ENABLE_GPU}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-linux-x64-gpu-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-gpu-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=474d5d74b588d54aa3e167f38acc9b1b8d20c292d0db92299bdc33a81eb4492d") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-x64-gpu-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-gpu-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=84618c385d5cbac48fc714b8fb86e43828b52038144c1e0fdcb4c03293ae2d5a") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-x64-gpu-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-gpu-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-gpu-1.16.1.tgz - /tmp/onnxruntime-linux-x64-gpu-1.16.1.tgz - /star-fj/fangjun/download/github/onnxruntime-linux-x64-gpu-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-linux-x64-gpu-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-gpu-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-gpu-1.16.2.tgz + /tmp/onnxruntime-linux-x64-gpu-1.16.2.tgz + /star-fj/fangjun/download/github/onnxruntime-linux-x64-gpu-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-x86_64-static.cmake b/cmake/onnxruntime-linux-x86_64-static.cmake index 91c1b2fc..8d5c9ff7 100644 --- a/cmake/onnxruntime-linux-x86_64-static.cmake +++ b/cmake/onnxruntime-linux-x86_64-static.cmake @@ -14,19 +14,19 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-linux-x64-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=0aa52fbff16ee9b165f42b7ea2ad61600d415d19681c9a9c6daca686c512cc64") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-linux-x64-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=912205ff23d7b717f6a24e6fa5287feefbea51657b24c0934b0a178ead371bdb") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-x64-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-static_lib-1.16.1.zip - /tmp/onnxruntime-linux-x64-static_lib-1.16.1.zip - /star-fj/fangjun/download/github/onnxruntime-linux-x64-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-linux-x64-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-static_lib-1.16.2.zip + /tmp/onnxruntime-linux-x64-static_lib-1.16.2.zip + /star-fj/fangjun/download/github/onnxruntime-linux-x64-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-linux-x86_64.cmake b/cmake/onnxruntime-linux-x86_64.cmake index 9fc86ac9..ebd1e575 100644 --- a/cmake/onnxruntime-linux-x86_64.cmake +++ b/cmake/onnxruntime-linux-x86_64.cmake @@ -14,19 +14,19 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-linux-x64-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=53a0f03f71587ed602e99e82773132fc634b74c2d227316fbfd4bf67181e72ed") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-linux-x64-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-linux-x64-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=70c769771ad4b6d63b87ca1f62d3f11e998ea0b9d738d6bbdd6a5e6d8c1deb31") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-linux-x64-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-1.16.1.tgz - /tmp/onnxruntime-linux-x64-1.16.1.tgz - /star-fj/fangjun/download/github/onnxruntime-linux-x64-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-linux-x64-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-linux-x64-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-linux-x64-1.16.2.tgz + /tmp/onnxruntime-linux-x64-1.16.2.tgz + /star-fj/fangjun/download/github/onnxruntime-linux-x64-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-arm64-static.cmake b/cmake/onnxruntime-osx-arm64-static.cmake index 59a90dd3..e391d6c3 100644 --- a/cmake/onnxruntime-osx-arm64-static.cmake +++ b/cmake/onnxruntime-osx-arm64-static.cmake @@ -12,18 +12,18 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-osx-arm64-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=2f7e9661bb01cf676f676c8d02e24a1e8e244e6f1e2a983e9a6f5f582b7e4a02") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-osx-arm64-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=d981882bc46d7bdbbf44ea5678549fa620cc33989682cd4f0362c5affbf9e83c") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-arm64-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-static_lib-1.16.1.zip - /tmp/onnxruntime-osx-arm64-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-osx-arm64-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-static_lib-1.16.2.zip + /tmp/onnxruntime-osx-arm64-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-arm64.cmake b/cmake/onnxruntime-osx-arm64.cmake index f0a220f2..e6cb6f3c 100644 --- a/cmake/onnxruntime-osx-arm64.cmake +++ b/cmake/onnxruntime-osx-arm64.cmake @@ -12,18 +12,18 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-osx-arm64-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=56ca6b8de3a220ea606c2067ba65d11dfa6e4f722e01ac7dc75f7152b81445e0") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-osx-arm64-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-arm64-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=129eb884b39102492ff6fad3dc5aeaa2b1cca3a941fbd7436aaacf87a549facf") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-arm64-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-1.16.1.tgz - /tmp/onnxruntime-osx-arm64-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-osx-arm64-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-arm64-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-osx-arm64-1.16.2.tgz + /tmp/onnxruntime-osx-arm64-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-universal-static.cmake b/cmake/onnxruntime-osx-universal-static.cmake index 0a8fe5a4..d247b399 100644 --- a/cmake/onnxruntime-osx-universal-static.cmake +++ b/cmake/onnxruntime-osx-universal-static.cmake @@ -13,18 +13,18 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-osx-universal2-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=ec47c70f47a76da237c10607e5129b99230c101c132ea1ec13b90d6e36f84a89") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-osx-universal2-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=d81e878186cddc70d9e0c5b36a0cc1bd7e7e705c97fad5878a300df2d12236a4") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-universal2-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-static_lib-1.16.1.zip - /tmp/onnxruntime-osx-universal2-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-osx-universal2-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-static_lib-1.16.2.zip + /tmp/onnxruntime-osx-universal2-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-universal.cmake b/cmake/onnxruntime-osx-universal.cmake index 678d2bed..19dea668 100644 --- a/cmake/onnxruntime-osx-universal.cmake +++ b/cmake/onnxruntime-osx-universal.cmake @@ -13,18 +13,18 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-osx-universal2-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=e8568a4a3f602c25ea7c3bbd2f085340dff5bb68fa7c859fd763d944105e3d76") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-osx-universal2-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-universal2-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=eb5200ceb5d196c5c84eb72a7831a780d1b63349b158405bc28a7817ad125b3d") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-universal2-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-1.16.1.tgz - /tmp/onnxruntime-osx-universal2-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-osx-universal2-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-universal2-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-osx-universal2-1.16.2.tgz + /tmp/onnxruntime-osx-universal2-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-x86_64-static.cmake b/cmake/onnxruntime-osx-x86_64-static.cmake index c41d0209..03788664 100644 --- a/cmake/onnxruntime-osx-x86_64-static.cmake +++ b/cmake/onnxruntime-osx-x86_64-static.cmake @@ -12,18 +12,18 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-osx-x86_64-static_lib-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-x86_64-static_lib-1.16.1.zip") -set(onnxruntime_HASH "SHA256=da7e223d975ddfc9599187d016e2fc47e6f072f2a9817c5a48d8d7f021b49fbb") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-osx-x86_64-static_lib-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-x86_64-static_lib-1.16.2.zip") +set(onnxruntime_HASH "SHA256=5b35de726aca53e6db714db6e1b5537ac5416fae43941dbe5edc103d0c093d39") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-x86_64-static_lib-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-x86_64-static_lib-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-osx-x86_64-static_lib-1.16.1.zip - /tmp/onnxruntime-osx-x86_64-static_lib-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-osx-x86_64-static_lib-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-x86_64-static_lib-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-osx-x86_64-static_lib-1.16.2.zip + /tmp/onnxruntime-osx-x86_64-static_lib-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-osx-x86_64.cmake b/cmake/onnxruntime-osx-x86_64.cmake index 6f13d149..c031e00b 100644 --- a/cmake/onnxruntime-osx-x86_64.cmake +++ b/cmake/onnxruntime-osx-x86_64.cmake @@ -12,18 +12,18 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-osx-x86_64-1.16.1.tgz") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-x86_64-1.16.1.tgz") -set(onnxruntime_HASH "SHA256=0b8ae24401a8f75e1c4f75257d4eaeb1b6d44055e027df4aa4a84e67e0f9b9e3") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-osx-x86_64-1.16.2.tgz") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-osx-x86_64-1.16.2.tgz") +set(onnxruntime_HASH "SHA256=5d18e49e0b0baff1ae73c3b1e566b57aa61dfc0ba498da0bc26d73dcbba74e6d") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-osx-x86_64-1.16.1.tgz - ${PROJECT_SOURCE_DIR}/onnxruntime-osx-x86_64-1.16.1.tgz - ${PROJECT_BINARY_DIR}/onnxruntime-osx-x86_64-1.16.1.tgz - /tmp/onnxruntime-osx-x86_64-1.16.1.tgz + $ENV{HOME}/Downloads/onnxruntime-osx-x86_64-1.16.2.tgz + ${PROJECT_SOURCE_DIR}/onnxruntime-osx-x86_64-1.16.2.tgz + ${PROJECT_BINARY_DIR}/onnxruntime-osx-x86_64-1.16.2.tgz + /tmp/onnxruntime-osx-x86_64-1.16.2.tgz ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-win-x64-gpu.cmake b/cmake/onnxruntime-win-x64-gpu.cmake index 949a94a6..94e15653 100644 --- a/cmake/onnxruntime-win-x64-gpu.cmake +++ b/cmake/onnxruntime-win-x64-gpu.cmake @@ -19,18 +19,18 @@ if(NOT SHERPA_ONNX_ENABLE_GPU) message(FATAL_ERROR "This file is for NVIDIA GPU only. Given SHERPA_ONNX_ENABLE_GPU: ${SHERPA_ONNX_ENABLE_GPU}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-win-x64-gpu-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-gpu-1.16.1.zip") -set(onnxruntime_HASH "SHA256=b841f8e8d9a0556bfc5228ff1488395fa041fafe8d16a62e25a254d000d51888") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-win-x64-gpu-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-gpu-1.16.2.zip") +set(onnxruntime_HASH "SHA256=241572c3562e94281b1925c980c9a9fa3a605e0687218991e89b8bede0af2f06") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-win-x64-gpu-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-gpu-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-gpu-1.16.1.zip - /tmp/onnxruntime-win-x64-gpu-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-win-x64-gpu-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-gpu-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-gpu-1.16.2.zip + /tmp/onnxruntime-win-x64-gpu-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-win-x64-static.cmake b/cmake/onnxruntime-win-x64-static.cmake index e28f91f5..336a788d 100644 --- a/cmake/onnxruntime-win-x64-static.cmake +++ b/cmake/onnxruntime-win-x64-static.cmake @@ -15,18 +15,18 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2") -set(onnxruntime_HASH "SHA256=9d7ba69823a6948887d0dee3e80c8c8ce84aae3e4e151f1e96eb34ca8ba9915f") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2") +set(onnxruntime_HASH "SHA256=f8fa3305cdde4df82e9a8e4627b9fa25142231d1526c6f170bb81f94648bfb6e") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2 - ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2 - ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2 - /tmp/onnxruntime-win-x64-static_lib-1.16.1.tar.bz2 + $ENV{HOME}/Downloads/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2 + ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2 + ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2 + /tmp/onnxruntime-win-x64-static_lib-1.16.2.tar.bz2 ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-win-x64.cmake b/cmake/onnxruntime-win-x64.cmake index 4ba44bc5..0d3535ee 100644 --- a/cmake/onnxruntime-win-x64.cmake +++ b/cmake/onnxruntime-win-x64.cmake @@ -15,18 +15,18 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-win-x64-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-1.16.1.zip") -set(onnxruntime_HASH "SHA256=05a972384c73c05bce51ffd3e15b1e78325ea9fa652573113159b5cac547ecce") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-win-x64-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x64-1.16.2.zip") +set(onnxruntime_HASH "SHA256=56df1a803a8ca24456471ee3540c1476e3f0b49a1690b93832775ee667a8ce61") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-win-x64-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-1.16.1.zip - /tmp/onnxruntime-win-x64-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-win-x64-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-win-x64-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-win-x64-1.16.2.zip + /tmp/onnxruntime-win-x64-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-win-x86-static.cmake b/cmake/onnxruntime-win-x86-static.cmake index 720adecd..924ae936 100644 --- a/cmake/onnxruntime-win-x86-static.cmake +++ b/cmake/onnxruntime-win-x86-static.cmake @@ -15,18 +15,18 @@ if(BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building static libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.1/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2") -set(onnxruntime_HASH "SHA256=590d702f6705452567789ef862384e8ab99b039da10e7ecdc11a07d778c80ff9") +set(onnxruntime_URL "https://github.com/csukuangfj/onnxruntime-libs/releases/download/v1.16.2/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2") +set(onnxruntime_HASH "SHA256=b862605afc38a3b859673bc6a6691524328fc851b5a60a86eac12fb3192475e3") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2 - ${PROJECT_SOURCE_DIR}/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2 - ${PROJECT_BINARY_DIR}/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2 - /tmp/onnxruntime-win-x86-static_lib-1.16.1.tar.bz2 + $ENV{HOME}/Downloads/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2 + ${PROJECT_SOURCE_DIR}/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2 + ${PROJECT_BINARY_DIR}/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2 + /tmp/onnxruntime-win-x86-static_lib-1.16.2.tar.bz2 ) foreach(f IN LISTS possible_file_locations) diff --git a/cmake/onnxruntime-win-x86.cmake b/cmake/onnxruntime-win-x86.cmake index 0ba4a9d1..b280bb36 100644 --- a/cmake/onnxruntime-win-x86.cmake +++ b/cmake/onnxruntime-win-x86.cmake @@ -15,18 +15,18 @@ if(NOT BUILD_SHARED_LIBS) message(FATAL_ERROR "This file is for building shared libraries. BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") endif() -set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.1/onnxruntime-win-x86-1.16.1.zip") -set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x86-1.16.1.zip") -set(onnxruntime_HASH "SHA256=60b476cde62d424fc9bf87ec3bf275cf40af76bdb25022581f3ecaf4af5992a1") +set(onnxruntime_URL "https://github.com/microsoft/onnxruntime/releases/download/v1.16.2/onnxruntime-win-x86-1.16.2.zip") +set(onnxruntime_URL2 "https://huggingface.co/csukuangfj/onnxruntime-libs/resolve/main/onnxruntime-win-x86-1.16.2.zip") +set(onnxruntime_HASH "SHA256=d8d4b0168670fb16f8d0af95f20334faa804c3eb6e5057d372c22e6efbad3142") # If you don't have access to the Internet, # please download onnxruntime to one of the following locations. # You can add more if you want. set(possible_file_locations - $ENV{HOME}/Downloads/onnxruntime-win-x86-1.16.1.zip - ${PROJECT_SOURCE_DIR}/onnxruntime-win-x86-1.16.1.zip - ${PROJECT_BINARY_DIR}/onnxruntime-win-x86-1.16.1.zip - /tmp/onnxruntime-win-x86-1.16.1.zip + $ENV{HOME}/Downloads/onnxruntime-win-x86-1.16.2.zip + ${PROJECT_SOURCE_DIR}/onnxruntime-win-x86-1.16.2.zip + ${PROJECT_BINARY_DIR}/onnxruntime-win-x86-1.16.2.zip + /tmp/onnxruntime-win-x86-1.16.2.zip ) foreach(f IN LISTS possible_file_locations) diff --git a/scripts/dotnet/generate.py b/scripts/dotnet/generate.py index 813b8848..72f4b2bc 100755 --- a/scripts/dotnet/generate.py +++ b/scripts/dotnet/generate.py @@ -34,7 +34,7 @@ def get_dict(): def process_linux(s): libs = [ "libkaldi-native-fbank-core.so", - "libonnxruntime.so.1.16.1", + "libonnxruntime.so.1.16.2", "libsherpa-onnx-c-api.so", "libsherpa-onnx-core.so", ] @@ -56,7 +56,7 @@ def process_linux(s): def process_macos(s): libs = [ "libkaldi-native-fbank-core.dylib", - "libonnxruntime.1.16.1.dylib", + "libonnxruntime.1.16.2.dylib", "libsherpa-onnx-c-api.dylib", "libsherpa-onnx-core.dylib", ]