Home
last modified time | relevance | path

Searched refs:toolchain (Results 1 – 25 of 168) sorted by relevance

1234567

/Zephyr-latest/doc/develop/toolchains/
Dcustom_cmake.rst6 To use a custom toolchain defined in an external CMake file, :ref:`set these
9 - Set :envvar:`ZEPHYR_TOOLCHAIN_VARIANT` to your toolchain's name
11 toolchain's CMake configuration files.
13 Zephyr will then include the toolchain cmake files located in the
16 - :file:`cmake/toolchain/<toolchain name>/generic.cmake`: configures the
17 toolchain for "generic" use, which mostly means running the C preprocessor
20 - :file:`cmake/toolchain/<toolchain name>/target.cmake`: configures the
21 toolchain for "target" use, i.e. building Zephyr and your application's
24 Here <toolchain name> is the same as the name provided in
43 settings in a file named :file:`my-toolchain.cmake`, you can then invoke cmake
[all …]
Dcrosstool_ng.rst8 ``xtools`` toolchain variant is deprecated. The
9 :ref:`cross-compile toolchain variant <other_x_compilers>` should be used
10 when using a custom toolchain built with Crosstool-NG.
19 build your toolchain. Repeat as necessary to build toolchains for multiple
30 Currently, only i586 and Arm toolchain builds are verified.
35 - Set :envvar:`XTOOLS_TOOLCHAIN_PATH` to the toolchain build directory.
Ddesignware_arc_mwdt.rst13 Even though ARC MWDT toolchain is used for Zephyr RTOS build, still the GNU preprocessor & GNU
16 … To setup ARC GNU toolchain please use SDK Bundle (Full or Minimal) instead of manual installation
17 of separate tarballs. It installs and registers toolchain and host tools in the system,
18 that allows you to avoid toolchain related issues while building Zephyr.
23 - Set :envvar:`ARCMWDT_TOOLCHAIN_PATH` to the toolchain installation directory. MWDT installation
28 If you have only one ARC MWDT toolchain version installed on your machine you may skip setting
Dother_x_compilers.rst6 This toolchain variant is borrowed from the Linux kernel build system's
8 GNU-based cross toolchain.
15 toolchain set-up mechanism itself is supported.)
36 toolchain's binaries have, e.g. the path to the directory containing the
53 When using this option, all of your toolchain binaries must reside in the same
59 ``-``). If your toolchain is installed in ``/opt/mytoolchain/bin`` with binary
/Zephyr-latest/cmake/modules/
DFindHostTools.cmake74 # Default to the host system's toolchain if we are targeting a host based target
82 # Prevent CMake from testing the toolchain
88 # Support for out-of-tree toolchain
91 # Default toolchain cmake file
98 # but in case Zephyr's SDK toolchain is used, set TOOLCHAIN_HOME
103 set(TOOLCHAIN_ROOT ${TOOLCHAIN_ROOT} CACHE STRING "Zephyr toolchain root" FORCE)
104 assert(TOOLCHAIN_ROOT "Zephyr toolchain root path invalid: please set the TOOLCHAIN_ROOT-variable")
107 set(ZEPHYR_TOOLCHAIN_VARIANT ${ZEPHYR_TOOLCHAIN_VARIANT} CACHE STRING "Zephyr toolchain variant")
109 # Configure the toolchain based on what SDK/toolchain is in use.
110 include(${TOOLCHAIN_ROOT}/cmake/toolchain/${ZEPHYR_TOOLCHAIN_VARIANT}/generic.cmake)
[all …]
DFindoneApi.cmake10 # True if the oneApi toolchain/compiler, icx, was found.
13 # The version of the oneAPI toolchain.
DFindarmclang.cmake10 # True if the arm clang toolchain/compiler was found.
13 # The version of the arm clang toolchain.
DFindTargetTools.cmake30 # Prevent CMake from testing the toolchain
88 include(${TOOLCHAIN_ROOT}/cmake/toolchain/${ZEPHYR_TOOLCHAIN_VARIANT}/target.cmake)
97 # A toolchain consist of a compiler and a linker.
98 # In Zephyr, toolchains require a port under cmake/toolchain/.
99 # Each toolchain port must set COMPILER and LINKER.
100 # E.g. toolchain/llvm may pick {clang, ld} or {clang, lld}.
/Zephyr-latest/cmake/toolchain/cross-compile/
DKconfig5 bool "Cross-compile toolchain supports TLS"
8 Set this if the cross-compile toolchain being used for the build
12 bool "Cross-compile toolchain supports GNU Extensions"
15 Set this if the cross-compile toolchain being used for the build
Dgeneric.cmake4 # toolchain with a single environment variable.
11 # 'cross-compile' and the 'CROSS_COMPILE' env var to the toolchain
31 message(STATUS "Found toolchain: cross-compile (${CROSS_COMPILE})")
/Zephyr-latest/cmake/toolchain/espressif/
Dgeneric.cmake12 # find some toolchain
19 # Old toolchain installation path has been deprecated in 2.7.
22 # find some toolchain
52 "Unable to find toolchain in ${TOOLCHAIN_HOME} "
56 set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
Dtarget.cmake27 set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
29 message(STATUS "Found toolchain: espressif (${ESPRESSIF_TOOLCHAIN_PATH})")
/Zephyr-latest/boards/intel/adsp/doc/
Dintel_adsp_ace15_mtpm.rst19 If you choose to build with the Xtensa toolchain instead of the Zephyr SDK, set
21 Xtensa toolchain environment variables listed in :ref:`intel_adsp_generic`.
29 For older versions of the toolchain, set the toolchain variant to ``xcc``.
/Zephyr-latest/cmake/toolchain/xtools/
Dgeneric.cmake15 # a 'generic' toolchain until we know for sure which toolchain we
36 set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
41 message(STATUS "Found toolchain: xtools (${XTOOLS_TOOLCHAIN_PATH})")
/Zephyr-latest/include/zephyr/toolchain/
Darmclang.h11 #error Please do not include toolchain-specific headers directly, use <zephyr/toolchain.h> instead
/Zephyr-latest/cmake/toolchain/host/
Dgeneric.cmake7 set(TOOLCHAIN_HAS_NEWLIB OFF CACHE BOOL "True if toolchain supports newlib")
9 message(STATUS "Found toolchain: host (gcc/ld)")
/Zephyr-latest/cmake/
Dverify-toolchain.cmake2 # defined for proper toolchain use.
8 # cmake [options] -P verify-toolchain.cmake
16 message(FATAL_ERROR "verify-toolchain.cmake is a script and must be invoked "
17 "as:\n 'cmake ... -P verify-toolchain.cmake'\n"
Dtarget_toolchain_flags.cmake1 # Uniquely identify the toolchain wrt. its capabilities.
7 # the MD5 will also change (as example toolchain upgrade in same folder)
35 # a new toolchain.
40 # Configure the toolchain flags based on what toolchain technology is used
/Zephyr-latest/cmake/toolchain/xcc/
Dgeneric.cmake3 include(${ZEPHYR_BASE}/cmake/toolchain/xcc/common.cmake)
12 -imacros${ZEPHYR_BASE}/include/zephyr/toolchain/xcc_missing_defs.h
25 message(STATUS "Found toolchain: xcc (${XTENSA_TOOLCHAIN_PATH})")
/Zephyr-latest/scripts/coredump/gdbstubs/arch/
Dxtensa.py52 def get_gdb_reg_definition(soc, toolchain): argument
58 if toolchain == XtensaToolchain.ZEPHYR:
60 elif toolchain == XtensaToolchain.XCC:
62 elif toolchain == XtensaToolchain.ESPRESSIF:
164 self.toolchain = XtensaToolchain(bytearray(arch_data_blk)[3])
170 self.toolchain = XtensaToolchain.ESPRESSIF
172 self.toolchain = XtensaToolchain.ZEPHYR
175 logger.debug("Xtensa toolchain: %s" % self.toolchain.name)
177 self.gdb_reg_def = get_gdb_reg_definition(self.soc, self.toolchain)
/Zephyr-latest/cmake/toolchain/llvm/
Dgeneric.cmake30 # Support for newlib is indicated by the presence of '_newlib_version.h' in the toolchain path.
34 set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
37 # Support for picolibc is indicated by the presence of 'picolibc.h' in the toolchain path.
40 set(TOOLCHAIN_HAS_PICOLIBC ON CACHE BOOL "True if toolchain supports picolibc")
44 message(STATUS "Found toolchain: llvm (clang/ld)")
/Zephyr-latest/cmake/toolchain/gnuarmemb/
Dgeneric.cmake21 set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
23 message(STATUS "Found toolchain: gnuarmemb (${GNUARMEMB_TOOLCHAIN_PATH})")
/Zephyr-latest/soc/andestech/ae350/
DCMakeLists.txt16 # Note: AndeStar V5 DSP needs custom Andes V5 toolchain
21 # Note: AndeStar V5 EXEC.IT needs custom Andes V5 toolchain
/Zephyr-latest/cmake/toolchain/arcmwdt/
Dgeneric.cmake7 …message(STATUS "ARCMWDT_TOOLCHAIN_PATH is not set, use default toolchain from METAWARE_ROOT: '${ME…
13 …message(FATAL_ERROR "No MWDT toolchain specified: neither ARCMWDT_TOOLCHAIN_PATH nor METAWARE_ROOT…
31 # This workaround uses any (first awailable, independent on ARCH) toolchain from SDK for DTC prepro…
53 set(TOOLCHAIN_HAS_NEWLIB OFF CACHE BOOL "True if toolchain supports newlib")
/Zephyr-latest/lib/libc/picolibc/
DCMakeLists.txt22 # Use picolibc provided with the toolchain. This requires a new enough
23 # toolchain so that the version of picolibc supports auto-detecting a

1234567