Lines Matching +full:run +full:- +full:in +full:- +full:debug
1 .. _no-west:
7 not recommended for beginners due to the extra effort involved. In
11 - cloning the additional source code repositories used by Zephyr in
13 - specifying the locations of these repositories to the Zephyr build
15 - flashing and debugging without understanding detailed usage of the
23 .. code-block:: console
31 ------------------
33 In addition to downloading the zephyr source code repository itself,
34 you will need to manually clone the additional projects listed in the
37 .. code-block:: console
41 git clone https://github.com/zephyrproject-rtos/zephyr
42 # clone additional repositories listed in zephyr/west.yml,
45 As you pull changes in the zephyr repository, you will also need to
50 ---------------------
55 .. zephyr-app-commands::
56 :zephyr-app: samples/hello_world
59 :gen-args: -DZEPHYR_MODULES=module1;module2;...
63 :ref:`ZEPHYR_MODULES <important-build-vars>`.
75 west, you will need to download and place those blobs in the right places
76 instead of using ``west blobs``. See :ref:`bin-blobs` for more details.
79 ----------------------
81 Running build system targets like ``ninja flash``, ``ninja debug``,
83 <west-build-flash-debug>`. For example, ``ninja flash`` calls ``west
85 those targets will fail. You can of course still flash and debug using
86 any :ref:`flash-debug-host-tools` which work for your board (and which those
93 .. code-block:: console
96 git clone https://github.com/zephyrproject-rtos/west.git .west/west
100 .. code-block:: none
108 After that, and in order for ``ninja`` to be able to invoke ``west``
109 to flash and debug, you must specify the west directory. This can be
121 invoke ``ninja flash``, ``debug``, etc. The one exception is if you
122 specifically run one of these build system targets with a command
123 line like ``west build -t flash``. In that case, west is run twice:
124 once for ``west build``, and in a subprocess, again for ``west
125 flash``. Even in this case, ``ninja`` is only run once, as ``ninja
128 ``west flash`` is run.