Lines Matching full:build
47 and automate the tasks needed to cross-compile applications and build Docker images.
56 To build a Torizon container Docker ARM emulation needs to be enabled
66 More information on the build environment for Torizon containers is available `here
67 …dex.com/torizon/application-development/working-with-containers/configure-build-environment-for-to…
70 that will be used to build the image.
110 # BUILD ------------------------------------------------------------------------
111 FROM torizon/debian-cross-toolchain-${IMAGE_ARCH}:${CROSS_SDK_BASE_TAG} AS build
126 RUN CC=aarch64-linux-gnu-gcc cmake -S ./lv_port_linux -B build
127 RUN make -j 4 -C ${APP_ROOT}/build
138 # Copy the lvglsim executable compiled in the build step to the $APP_ROOT directory
140 COPY --from=build ${APP_ROOT}/lv_port_linux/bin/lvglsim ${APP_ROOT}
146 The ``Dockerfile`` acts like a recipe to build two images and ``build`` and ``deploy``.
148 First it downloads the necessary packages to build the simulator using Debian's package manager ``a…
155 This creates a smaller image that does not include the tool chain and the build dependencies.
159 ``docker build . -t lvgl_app``
237 * You are now ready to build your LVGL application for Torizon OS.