Skip to content

Commit

Permalink
fix the version of alsa-lib (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed Jul 11, 2024
1 parent bbb7067 commit 661b4e7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: pypa/cibuildwheel@v2.15.0
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 ..
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: pypa/cibuildwheel@v2.15.0
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 ..
Expand Down
2 changes: 1 addition & 1 deletion build-aarch64-linux-gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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
Expand Down
2 changes: 1 addition & 1 deletion build-arm-linux-gnueabihf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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
Expand Down
2 changes: 1 addition & 1 deletion build-riscv64-linux-gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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
Expand Down

0 comments on commit 661b4e7

Please sign in to comment.