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
| -- Configuring incomplete, errors occurred! See also "/home/leux/sololinker/project/app/lvgl_app/output/CMakeFiles/CMakeOutput.log". See also "/home/leux/sololinker/project/app/lvgl_app/output/CMakeFiles/CMakeError.log". make[1]: *** [Makefile:35: all] Error 1 make[1]: Leaving directory '/home/leux/sololinker/project/app/lvgl_app' make: *** [Makefile:23: all] Error 255 make: Leaving directory '/home/leux/sololinker/project/app' [build.sh:error] Running build_app failed! [build.sh:error] exit code 2 from line 453: [build.sh:info] make -C ${SDK_APP_DIR}
--------------------------------------------------------------------------------------
sololinker/project/app/lvgl_app/cmake/toolchainfile-rv1106.cmake sololinker/project/app/lvgl_app/cmake/toolchainfile-rv1106-glibc.cmake
ifeq ($(RK_ROOTFS_TYPE), ubuntu) TOOLCHAIN_FILE := ../cmake/toolchainfile-rv1106-glibc.cmake else TOOLCHAIN_FILE := ../cmake/toolchainfile-rv1106.cmake endif
SET(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc) SET(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)
--------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------
all: $(pkg-build) ifeq ($(RK_ROOTFS_TYPE), ubuntu) @echo "RootFS type is Ubuntu. building lvgl_demo only." else @echo "RootFS type is not Ubuntu. Proceeding with the build." $(foreach target,$(app_src),make -C $(target)||exit -1;) endif $(call MAROC_COPY_PKG_TO_APP_OUTPUT, $(RK_PROJECT_PATH_APP), $(RK_APP_OUTPUT)) --------------------------------------------------------------------------------------
|