| | |
| | | PACK_SUFIX=zip |
| | | |
| | | # LingYun source code FTP server |
| | | LY_FTP=http://main.iot-yun.club:2211/src/ |
| | | LY_FTP=http://master.weike-iot.com:8021/src/ |
| | | |
| | | # library download URL address |
| | | LIB_URL=$LY_FTP |
| | | |
| | | # Cross compiler for cross compile on Linux server |
| | | CROSS_COMPILE=arm-linux-gnueabihf- |
| | | CROSS_COMPILE=/opt/gcc-aarch32-10.3-2021.07/bin/arm-none-linux-gnueabihf- |
| | | |
| | | # compile jobs |
| | | JOBS=`cat /proc/cpuinfo |grep "processor"|wc -l` |
| | |
| | | { |
| | | BUILD_ARCH=$(uname -m) |
| | | if [[ $BUILD_ARCH =~ "arm" ]] ; then |
| | | pr_error "ERROR: local($BUILD_ARCH) compile $LIB_NAME not support" |
| | | pr_error "ERROR: local($BUILD_ARCH) compile $LIB_NAME not support for it's too slow" |
| | | exit 0; |
| | | fi |
| | | |
| | |
| | | -DINSTALL_PYTHON_EXAMPLES=OFF -DBUILD_EXAMPLES=OFF -DWITH_FFMPEG=OFF -DHAVE_FFMPEG=OFF \ |
| | | -DBUILD_opencv_js=OFF ../ |
| | | |
| | | make && make install |
| | | make -j ${JOBS} && make install |
| | | check_result "ERROR: compile ${LIB_NAME} failure" |
| | | } |
| | | |