Lines Matching refs:build
33 The application is built using the Zephyr build system. The EDK is built using
34 the Zephyr build system as well, via ``llext-edk`` target. The EDK is then
38 during build time, which is not really practical. This sample is about the EDK
39 providing the ability to build extensions independently from the application.
40 One could build the extensions in different directories, not related to the
48 To build the EDK, use the ``llext-edk`` target. For example:
53 :goals: build llext-edk
62 cp build/zephyr/llext-edk.tar.xz /tmp/edk
84 To build the extensions, in the ``ext1``, ``ext2``, ``ext3`` and ``kext1``
89 cmake -B build
90 make -C build
97 cmake -B build -DLLEXT_EDK_INSTALL_DIR=/tmp/edk/llext-edk
98 make -C build
103 Now, build the application, including the extensions, and run it:
108 :goals: build run