1# SPDX-License-Identifier: Apache-2.0 2 3# Configures binary tools as host GNU binutils 4 5find_program(CMAKE_OBJCOPY objcopy) 6find_program(CMAKE_OBJDUMP objdump) 7find_program(CMAKE_AR ar ) 8find_program(CMAKE_RANLIB ranlib ) 9find_program(CMAKE_READELF readelf) 10find_program(CMAKE_NM nm) 11find_program(CMAKE_STRIP strip) 12 13find_program(CMAKE_GDB gdb ) 14 15# Include bin tool properties 16include(${ZEPHYR_BASE}/cmake/bintools/gnu/target_bintools.cmake) 17