Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
sherpaonnx
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Fangjun Kuang
2024-06-23 20:20:38 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2024-06-23 20:20:38 +0800
Commit
6b7ced23171a6e53619cee67f62458182dd54ad7
6b7ced23
1 parent
7a663afb
Fix the alsa-lib version to v1.2.12 (#1048)
显示空白字符变更
内嵌
并排对比
正在显示
7 个修改的文件
包含
7 行增加
和
7 行删除
.github/workflows/build-wheels-aarch64.yaml
.github/workflows/build-wheels-linux.yaml
.github/workflows/linux-jni.yaml
.github/workflows/linux.yaml
build-aarch64-linux-gnu.sh
build-arm-linux-gnueabihf.sh
build-riscv64-linux-gnu.sh
.github/workflows/build-wheels-aarch64.yaml
查看文件 @
6b7ced2
...
...
@@ -40,7 +40,7 @@ jobs:
uses
:
pypa/cibuildwheel@v2.16.5
env
:
CIBW_BEFORE_ALL
:
|
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
cd alsa-lib
./gitcompile
cd ..
...
...
.github/workflows/build-wheels-linux.yaml
查看文件 @
6b7ced2
...
...
@@ -36,7 +36,7 @@ jobs:
uses
:
pypa/cibuildwheel@v2.16.5
env
:
CIBW_BEFORE_ALL
:
|
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
cd alsa-lib
./gitcompile
cd ..
...
...
.github/workflows/linux-jni.yaml
查看文件 @
6b7ced2
...
...
@@ -60,7 +60,7 @@ jobs:
cd /home/runner/work/sherpa-onnx/sherpa-onnx
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
pushd alsa-lib
./gitcompile
popd
...
...
.github/workflows/linux.yaml
查看文件 @
6b7ced2
...
...
@@ -88,7 +88,7 @@ jobs:
cd /home/runner/work/sherpa-onnx/sherpa-onnx
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
pushd alsa-lib
./gitcompile
popd
...
...
build-aarch64-linux-gnu.sh
查看文件 @
6b7ced2
...
...
@@ -23,7 +23,7 @@ cd $dir
if
[
! -f alsa-lib/src/.libs/libasound.so
]
;
then
echo
"Start to cross-compile alsa-lib"
if
[
! -d alsa-lib
]
;
then
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
fi
# If it shows:
# ./gitcompile: line 79: libtoolize: command not found
...
...
build-arm-linux-gnueabihf.sh
查看文件 @
6b7ced2
...
...
@@ -23,7 +23,7 @@ cd $dir
if
[
! -f alsa-lib/src/.libs/libasound.so
]
;
then
echo
"Start to cross-compile alsa-lib"
if
[
! -d alsa-lib
]
;
then
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
fi
pushd
alsa-lib
CC
=
arm-linux-gnueabihf-gcc ./gitcompile --host
=
arm-linux-gnueabihf
...
...
build-riscv64-linux-gnu.sh
查看文件 @
6b7ced2
...
...
@@ -26,7 +26,7 @@ cd $dir
if
[
! -f alsa-lib/src/.libs/libasound.so
]
;
then
echo
"Start to cross-compile alsa-lib"
if
[
! -d alsa-lib
]
;
then
git clone --depth 1 https://github.com/alsa-project/alsa-lib
git clone --depth 1
--branch v1.2.12
https://github.com/alsa-project/alsa-lib
fi
# If it shows:
# ./gitcompile: line 79: libtoolize: command not found
...
...
请
注册
或
登录
后发表评论