You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
458 B
30 lines
458 B
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
BASE_DIR="$PWD"
|
|
|
|
# load configure
|
|
. ./config.sh
|
|
|
|
# build
|
|
echo "ARM_ABI is ${ARM_ABI}"
|
|
echo "PADDLE_LITE_DIR is ${PADDLE_LITE_DIR}"
|
|
|
|
echo "Build depends..."
|
|
./build-depends.sh "$@"
|
|
|
|
mkdir -p "$BASE_DIR/build"
|
|
cd "$BASE_DIR/build"
|
|
cmake -DPADDLE_LITE_DIR="${PADDLE_LITE_DIR}" -DARM_ABI="${ARM_ABI}" ../src
|
|
|
|
if [ "$*" = "" ]; then
|
|
make -j$(nproc)
|
|
else
|
|
make "$@"
|
|
fi
|
|
|
|
echo "make successful!"
|