Support onnxruntime 1.16.0 (#330)

This commit is contained in:
Fangjun Kuang
2023-09-21 20:39:24 +08:00
committed by GitHub
parent b640c295b9
commit cf199ad466
27 changed files with 139 additions and 119 deletions

View File

@@ -1,5 +1,11 @@
#!/usr/bin/env bash
if command -v arm-none-linux-gnueabihf-gcc &> /dev/null; then
ln -svf $(which arm-none-linux-gnueabihf-gcc) ./arm-linux-gnueabihf-gcc
ln -svf $(which arm-none-linux-gnueabihf-g++) ./arm-linux-gnueabihf-g++
export PATH=$PWD:$PATH
fi
if ! command -v arm-linux-gnueabihf-gcc &> /dev/null; then
echo "Please install a toolchain for cross-compiling."
echo "You can refer to: "