10 lines
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
#用于gitlab-ci.yml编译使用
|
|
echo "Start compile."
|
|
export ROOT_PATH=$PWD
|
|
|
|
source build/envsetup.sh
|
|
lunch Linux cfg_565_HUNTING_EVB_LINUX_4G_S550 arm-ca9-linux-uclibcgnueabihf-8.4.01
|
|
make library_clean app_clean
|
|
make library app
|