target.cmake 400 B

1234567891011121314
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Configures binary tools as host GNU binutils
  3. find_program(CMAKE_OBJCOPY objcopy)
  4. find_program(CMAKE_OBJDUMP objdump)
  5. find_program(CMAKE_AR ar )
  6. find_program(CMAKE_RANLILB ranlib )
  7. find_program(CMAKE_READELF readelf)
  8. find_program(CMAKE_GDB gdb )
  9. # Include bin tool properties
  10. include(${ZEPHYR_BASE}/cmake/bintools/gnu/target_bintools.cmake)