Lines Matching full:build
26 BUILD=1
39 Helper script to setup, build and run CMSIS-NN unit tests
46 …-b Disable CMake build. Only works with previously built targets. Designed to quickly rerun cpu t…
47 …-r Disable running the unit tests. Designed to test build only or allow user to manually run indi…
67 b) BUILD=0;;
146 …cmake -S ./ -B build-${cpu}-${compiler} -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_FILE} -DTARGET_CPU=${cp…
147 cmake --build build-${cpu}-${compiler}/
149 echo "Built successfully into build-${cpu}-${compiler}"
151 …cmake_command=$(cmake -S ./ -B build-${cpu}-${compiler} -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_FILE} -…
152 make_command=$(cmake --build build-${cpu}-${compiler}/ 2>&1)
153 echo "${cmake_command}" > build-${cpu}-${compiler}/cmake_command.txt
154 echo "${make_command}" > build-${cpu}-${compiler}/make_command.txt
156 echo "Built successfully into build-${cpu}-${compiler}"
163 readarray -d '' tests < <(find ./build-${cpu}-${compiler}/ -iname "*.elf" -print0)
180 if [[ ${BUILD} -eq 0 && ${RUN} -eq 0 && ${SETUP_ENVIRONMENT} -eq 0 ]]; then
217 if [[ ${BUILD} -eq 1 || ${RUN} -eq 1 ]]; then
240 if [[ ${BUILD} -eq 1 ]]; then