Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion developer_guides/unit_tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ add **--with-cmocka-prefix=<path to cmocka>**. For example:
.. code-block:: bash

./autogen.sh
./configure --with-arch=xtensa --with-platform=apollolake \
./configure --with-arch=xtensa-smp --with-platform=apollolake \
--with-dsp-core=$XTENSA_CORE --with-root-dir=$CONFIG_PATH/xtensa-elf \
--host=xtensa-bxt-elf --with-meu=$MEU_PATH \
--with-key=$PRIVATE_KEY_PATH CC=xt-xcc OBJCOPY=xt-objcopy \
Expand Down
4 changes: 2 additions & 2 deletions getting_started/build-guide/build-from-scratch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,15 @@ for |APL|:

.. code-block:: bash

$ ./configure --with-arch=xtensa --with-platform=broxton --with-root-dir=`pwd`/../xtensa-root/xtensa-bxt-elf --host=xtensa-bxt-elf
$ ./configure --with-arch=xtensa-smp --with-platform=broxton --with-root-dir=`pwd`/../xtensa-root/xtensa-bxt-elf --host=xtensa-bxt-elf
$ make
$ make bin

for |CNL|:

.. code-block:: bash

$ ./configure --with-arch=xtensa --with-platform=cannonlake --with-root-dir=`pwd`/../xtensa-root/xtensa-cnl-elf --host=xtensa-cnl-elf
$ ./configure --with-arch=xtensa-smp --with-platform=cannonlake --with-root-dir=`pwd`/../xtensa-root/xtensa-cnl-elf --host=xtensa-cnl-elf
$ make
$ make bin

Expand Down