-
Notifications
You must be signed in to change notification settings - Fork 156
/
build-riscv64-linux-gnu.sh
executable file
·52 lines (45 loc) · 1.42 KB
/
build-riscv64-linux-gnu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
if ! command -v riscv64-linux-gnu-g++ &> /dev/null; then
echo "Please install the toolchain first."
echo
echo "You can use the following command to install the toolchain:"
echo
echo " sudo apt-get install gcc-riscv64-linux-gnu"
echo " sudo apt-get install g++-riscv64-linux-gnu"
echo
exit 1
fi
dir=build-riscv64-linux-gnu
mkdir -p $dir
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 --branch v1.2.12 https://github.com/alsa-project/alsa-lib
fi
# If it shows:
# ./gitcompile: line 79: libtoolize: command not found
# Please use:
# sudo apt-get install libtool m4 automake
#
pushd alsa-lib
CC=riscv64-linux-gnu-gcc ./gitcompile --host=riscv64-linux-gnu
popd
echo "Finish cross-compiling alsa-lib"
fi
export CPLUS_INCLUDE_PATH=$PWD/alsa-lib/include:$CPLUS_INCLUDE_PATH
export SHERPA_NCNN_ALSA_LIB_DIR=$PWD/alsa-lib/src/.libs
cmake \
-DCMAKE_INSTALL_PREFIX=./install \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=OFF \
-DSHERPA_NCNN_ENABLE_PYTHON=OFF \
-DSHERPA_NCNN_ENABLE_PORTAUDIO=OFF \
-DSHERPA_NCNN_ENABLE_JNI=OFF \
-DSHERPA_NCNN_ENABLE_BINARY=ON \
-DSHERPA_NCNN_ENABLE_TEST=OFF \
-DCMAKE_TOOLCHAIN_FILE=../toolchains/riscv64-linux-gnu.toolchain.cmake \
..
make VERBOSE=1 -j4
make install/strip
cp -v $SHERPA_NCNN_ALSA_LIB_DIR/libasound.so* ./install/lib/