elfconvert_command.cmake 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # For armclang the elfconvert command is made into a script.
  2. # Reason for that is because not a single command covers all use cases,
  3. # and it must therefore be possible to call individual commands, depending
  4. # on the arguments used.
  5. cmake_minimum_required(VERSION 3.13)
  6. # Handle stripping
  7. if (STRIP_DEBUG OR STRIP_ALL)
  8. set(obj_copy_target_output "--elf")
  9. if(STRIP_ALL)
  10. set(obj_copy_strip "--strip=all")
  11. elseif(STRIP_DEBUG)
  12. set(obj_copy_strip "--strip=debug")
  13. endif()
  14. endif()
  15. # Unknown support of --srec-len in arm-ds
  16. # Handle Input and Output target types
  17. if(DEFINED OUTTARGET)
  18. if(${OUTTARGET} STREQUAL "srec")
  19. set(obj_copy_target_output "--m32")
  20. elseif(${OUTTARGET} STREQUAL "ihex")
  21. set(obj_copy_target_output "--i32combined")
  22. elseif(${OUTTARGET} STREQUAL "binary")
  23. set(obj_copy_target_output "--bincombined")
  24. if(GAP_FILL)
  25. set(obj_copy_gap_fill "--bincombined_padding=1,${GAP_FILL}")
  26. endif()
  27. endif()
  28. endif()
  29. if(DEFINED ONLY_SECTION AND "${OUTTARGET}" STREQUAL "binary")
  30. set(obj_copy_target_output "--bin")
  31. set(outfile_dir .dir)
  32. string(REGEX REPLACE "^[\.]" "" only_section_clean "${ONLY_SECTION}")
  33. endif()
  34. # Note: fromelf is a little special regarding bin output, as each section gets
  35. # its own file. This means that when only a specific section is required
  36. # then that section must be moved to correct location.
  37. execute_process(
  38. COMMAND ${FROMELF}
  39. ${obj_copy_strip}
  40. ${obj_copy_gap_fill} ${obj_copy_target_output}
  41. --output ${OUTFILE}${outfile_dir} ${INFILE}
  42. )
  43. if(DEFINED ONLY_SECTION AND "${OUTTARGET}" STREQUAL "binary")
  44. execute_process(
  45. COMMAND ${CMAKE_COMMAND} -E copy
  46. ${OUTFILE}${outfile_dir}/${only_section_clean} ${OUTFILE}
  47. )
  48. endif()