Home
last modified time | relevance | path

Searched full:paths (Results 1 – 25 of 247) sorted by relevance

12345678910

/Zephyr-Core-3.7.0/cmake/bintools/gnu/
Dtarget.cmake5 find_program(CMAKE_OBJCOPY ${CROSS_COMPILE}objcopy PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
6 find_program(CMAKE_OBJDUMP ${CROSS_COMPILE}objdump PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
7 find_program(CMAKE_AS ${CROSS_COMPILE}as PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
9 find_program(CMAKE_AR ${CROSS_COMPILE}gcc-ar PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
10 find_program(CMAKE_RANLIB ${CROSS_COMPILE}gcc-ranlib PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
12 find_program(CMAKE_AR ${CROSS_COMPILE}ar PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
13 find_program(CMAKE_RANLIB ${CROSS_COMPILE}ranlib PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
15 find_program(CMAKE_READELF ${CROSS_COMPILE}readelf PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
16 find_program(CMAKE_NM ${CROSS_COMPILE}nm PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
17 find_program(CMAKE_STRIP ${CROSS_COMPILE}strip PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
[all …]
/Zephyr-Core-3.7.0/cmake/bintools/arcmwdt/
Dtarget.cmake5 find_program(CMAKE_ELF2BIN ${CROSS_COMPILE}elf2bin PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
6 find_program(CMAKE_OBJDUMP ${CROSS_COMPILE}elfdumpac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
7 find_program(CMAKE_AS ${CROSS_COMPILE}ccac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
8 find_program(CMAKE_AR ${CROSS_COMPILE}arac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
9 find_program(CMAKE_RANLIB ${CROSS_COMPILE}arac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
10 find_program(CMAKE_READELF ${CROSS_COMPILE}elfdumpac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
11 find_program(CMAKE_NM ${CROSS_COMPILE}nmac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
12 find_program(CMAKE_STRIP ${CROSS_COMPILE}stripac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
13 find_program(CMAKE_SIZE ${CROSS_COMPILE}sizeac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
14 find_program(CMAKE_ELF2HEX ${CROSS_COMPILE}elf2hex PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
[all …]
/Zephyr-Core-3.7.0/cmake/bintools/armclang/
Dtarget.cmake5 find_program(CMAKE_FROMELF fromelf PATHS ${TOOLCHAIN_HOME}/bin NO_DEFAULT_PATH)
6 find_program(CMAKE_AS armasm PATHS ${TOOLCHAIN_HOME}/bin NO_DEFAULT_PATH)
7 find_program(CMAKE_AR armar PATHS ${TOOLCHAIN_HOME}/bin NO_DEFAULT_PATH)
14 find_program(CMAKE_GDB ${CROSS_COMPILE}mdb PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/share/sysbuild/cmake/modules/
Dsysbuild_root.cmake5 # Convert Zephyr roots to absolute paths to be used by sysbuild.
7 # This CMake module will convert all relative paths in existing ROOT lists to
17 # If a root is defined it will check the list of paths in the root and convert
21 # Converted paths are placed in the CMake cache so that they are propagated
35 # Convert paths to absolute, relative from APP_DIR
/Zephyr-Core-3.7.0/cmake/modules/
Droot.cmake5 # Convert Zephyr roots to absolute paths.
7 # This CMake module will convert all relative paths in existing ROOT lists to
17 # If a root is defined it will check the list of paths in the root and convert
32 # Convert paths to absolute, relative from APPLICATION_SOURCE_DIR
Dpre_dt.cmake31 # - SHIELD_DIRS: paths to shield definitions (added to DTS_ROOT)
35 # Convert relative paths to absolute paths relative to the application
49 # Convert the directories in DTS_ROOT to absolute paths without
DFindZephyr-sdk.cmake64 # Paths that are used to find installed Zephyr SDK versions
77 find_package(Zephyr-sdk 0.0.0 EXACT QUIET CONFIG PATHS ${zephyr_sdk_search_paths})
96 …find_package(Zephyr-sdk ${Zephyr-sdk_FIND_VERSION} QUIET CONFIG PATHS ${zephyr_sdk_current_check_p…
109 …find_package(Zephyr-sdk ${Zephyr-sdk_FIND_VERSION} REQUIRED CONFIG PATHS ${zephyr_sdk_search_paths…
/Zephyr-Core-3.7.0/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py307 def _composite_params(self, paths: list[str] | None = None):
314 if paths is not None:
315 paths = [path if path.startswith('/') else '/' + path for path in paths]
316 parameters['paths'] = ','.join(paths)
320 def composite_read(self, endpoint: str, paths: list[str]):
322 parameters = self._composite_params(paths)
401 def composite_observe(self, endpoint: str, paths: list[str]):
402 parameters = self._composite_params(paths)
407 def cancel_composite_observe(self, endpoint: str, paths: list[str]):
408 paths = [path if path.startswith('/') else '/' + path for path in paths]
[all …]
/Zephyr-Core-3.7.0/cmake/compiler/arcmwdt/
Dgeneric.cmake5 find_program(CMAKE_DTS_PREPROCESSOR ${ZEPHYR_SDK_CROSS_COMPILE}gcc PATHS ${ZEPHYR_SDK_INSTALL_DIR} …
8 find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}ccac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
9 find_program(CMAKE_LLVM_COV ${CROSS_COMPILE}llvm-cov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
Dtarget.cmake2 find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}ccac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
3 find_program(CMAKE_CXX_COMPILER ${CROSS_COMPILE}ccac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
4 find_program(CMAKE_ASM_COMPILER ${CROSS_COMPILE}ccac PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/cmake/compiler/gcc/
Dgeneric.cmake5 find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}${CC} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
6 find_program(CMAKE_GCOV ${CROSS_COMPILE}gcov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/cmake/compiler/xcc/
Dgeneric.cmake5 find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}${CC} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
6 find_program(CMAKE_GCOV ${CROSS_COMPILE}gcov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/cmake/bintools/oneApi/
Dtarget.cmake4 set(find_program_clang_args PATHS ${TOOLCHAIN_HOME} ${ONEAPI_LLVM_BIN_PATH} NO_DEFAULT_PATH)
5 set(find_program_binutils_args PATHS ${TOOLCHAIN_HOME} )
/Zephyr-Core-3.7.0/cmake/compiler/armclang/
Dtarget.cmake2 find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}armclang PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
3 find_program(CMAKE_CXX_COMPILER ${CROSS_COMPILE}armclang PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
4 find_program(CMAKE_ASM_COMPILER ${CROSS_COMPILE}armclang PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/cmake/bintools/llvm/
Dtarget.cmake6 set(find_program_clang_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
7 set(find_program_binutils_args PATHS ${TOOLCHAIN_HOME})
/Zephyr-Core-3.7.0/scripts/ci/
Dtags.yaml10 # List of paths and/or glob patterns giving the files in the tag,
17 # Paths to directories should always have a trailing '/'.
20 # List of regular expressions applied to paths to determine if they
/Zephyr-Core-3.7.0/.github/workflows/
Dpylib_tests.yml11 paths:
18 paths:
Dscripts_tests.yml11 paths:
18 paths:
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/
Dexternal_content.py17 Paths for external content included via e.g. figure, literalinclude, etc.
26 and their paths adjusted if necessary. Defaults to ``DEFAULT_DIRECTIVES``.
58 """Adjust included content paths.
76 # ignore absolute paths
/Zephyr-Core-3.7.0/tests/bsim/bluetooth/
Dtests.nrf52bsim.txt1 # Search paths(s) for tests which will be run in the nrf52bsim
Dtests.nrf54l15bsim_nrf54l15_cpuapp.txt1 # Search paths(s) for tests which will be run in the nrf54l15 app core
Dtests.nrf5340bsim_nrf5340_cpunet.txt1 # Search paths(s) for tests which will be run in the nrf5340 net core (both app, host and controller
Dtests.nrf5340bsim_nrf5340_cpuapp.txt1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
/Zephyr-Core-3.7.0/cmake/compiler/icx/
Dgeneric.cmake4 set(find_program_icx_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
/Zephyr-Core-3.7.0/cmake/compiler/clang/
Dgeneric.cmake4 set(find_program_clang_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)

12345678910