Searched full:paths (Results 1 – 25 of 247) sorted by relevance
12345678910
/Zephyr-Core-3.7.0/cmake/bintools/gnu/ |
D | target.cmake | 5 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/ |
D | target.cmake | 5 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/ |
D | target.cmake | 5 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/ |
D | sysbuild_root.cmake | 5 # 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/ |
D | root.cmake | 5 # 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
|
D | pre_dt.cmake | 31 # - 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
|
D | FindZephyr-sdk.cmake | 64 # 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/ |
D | leshan.py | 307 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/ |
D | generic.cmake | 5 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)
|
D | target.cmake | 2 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/ |
D | generic.cmake | 5 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/ |
D | generic.cmake | 5 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/ |
D | target.cmake | 4 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/ |
D | target.cmake | 2 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/ |
D | target.cmake | 6 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/ |
D | tags.yaml | 10 # 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/ |
D | pylib_tests.yml | 11 paths: 18 paths:
|
D | scripts_tests.yml | 11 paths: 18 paths:
|
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/ |
D | external_content.py | 17 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/ |
D | tests.nrf52bsim.txt | 1 # Search paths(s) for tests which will be run in the nrf52bsim
|
D | tests.nrf54l15bsim_nrf54l15_cpuapp.txt | 1 # Search paths(s) for tests which will be run in the nrf54l15 app core
|
D | tests.nrf5340bsim_nrf5340_cpunet.txt | 1 # Search paths(s) for tests which will be run in the nrf5340 net core (both app, host and controller
|
D | tests.nrf5340bsim_nrf5340_cpuapp.txt | 1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
|
/Zephyr-Core-3.7.0/cmake/compiler/icx/ |
D | generic.cmake | 4 set(find_program_icx_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
|
/Zephyr-Core-3.7.0/cmake/compiler/clang/ |
D | generic.cmake | 4 set(find_program_clang_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
|
12345678910