target_bintools.cmake 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # List of format the tool supports for converting, for example,
  2. # GNU tools uses objectcopyy, which supports the following: ihex, srec, binary
  3. set_property(TARGET bintools PROPERTY elfconvert_formats ihex binary)
  4. # armclang toolchain does not support all options in a single command
  5. # Therefore a CMake script is used, so that multiple commands can be executed
  6. # successively.
  7. set_property(TARGET bintools PROPERTY elfconvert_command ${CMAKE_COMMAND})
  8. set_property(TARGET bintools PROPERTY elfconvert_flag
  9. -DFROMELF=${CMAKE_FROMELF}
  10. )
  11. set_property(TARGET bintools PROPERTY elfconvert_flag_final
  12. -P ${CMAKE_CURRENT_LIST_DIR}/elfconvert_command.cmake)
  13. set_property(TARGET bintools PROPERTY elfconvert_flag_strip_all "-DSTRIP_ALL=True")
  14. set_property(TARGET bintools PROPERTY elfconvert_flag_strip_debug "-DSTRIP_DEBUG=True")
  15. set_property(TARGET bintools PROPERTY elfconvert_flag_intarget "-DINTARGET=")
  16. set_property(TARGET bintools PROPERTY elfconvert_flag_outtarget "-DOUTTARGET=")
  17. set_property(TARGET bintools PROPERTY elfconvert_flag_section_remove "-DREMOVE_SECTION=")
  18. set_property(TARGET bintools PROPERTY elfconvert_flag_section_only "-DONLY_SECTION=")
  19. # mwdt doesn't handle rename, consider adjusting abstraction.
  20. set_property(TARGET bintools PROPERTY elfconvert_flag_section_rename "-DRENAME_SECTION=")
  21. set_property(TARGET bintools PROPERTY elfconvert_flag_gapfill "-DGAP_FILL=")
  22. set_property(TARGET bintools PROPERTY elfconvert_flag_srec_len "-DSREC_LEN=")
  23. set_property(TARGET bintools PROPERTY elfconvert_flag_infile "-DINFILE=")
  24. set_property(TARGET bintools PROPERTY elfconvert_flag_outfile "-DOUTFILE=")
  25. #
  26. # - disassembly : Name of command for disassembly of files
  27. # In this implementation `fromelf` is used
  28. # disassembly_flag : --disassemble
  29. # disassembly_flag_final : empty
  30. # disassembly_flag_inline_source : --interleave=source
  31. # disassembly_flag_all : empty, fromelf does not differentiate on this.
  32. # disassembly_flag_infile : empty, fromelf doesn't take arguments for filenames
  33. # disassembly_flag_outfile : --output
  34. set_property(TARGET bintools PROPERTY disassembly_command ${CMAKE_FROMELF})
  35. set_property(TARGET bintools PROPERTY disassembly_flag --disassemble)
  36. set_property(TARGET bintools PROPERTY disassembly_flag_final "")
  37. set_property(TARGET bintools PROPERTY disassembly_flag_inline_source --interleave=source)
  38. set_property(TARGET bintools PROPERTY disassembly_flag_all "")
  39. set_property(TARGET bintools PROPERTY disassembly_flag_infile "")
  40. set_property(TARGET bintools PROPERTY disassembly_flag_outfile "--output=" )
  41. #
  42. # - readelf : Name of command for reading elf files.
  43. # In this implementation `fromelf` is used
  44. # readelf_flag : empty
  45. # readelf_flag_final : empty
  46. # readelf_flag_headers : --text
  47. # readelf_flag_infile : empty, fromelf doesn't take arguments for filenames
  48. # readelf_flag_outfile : --output
  49. # This is using fromelf from arm-ds / Keil.
  50. set_property(TARGET bintools PROPERTY readelf_command ${CMAKE_FROMELF})
  51. set_property(TARGET bintools PROPERTY readelf_flag "")
  52. set_property(TARGET bintools PROPERTY readelf_flag_final "")
  53. set_property(TARGET bintools PROPERTY readelf_flag_headers --text)
  54. set_property(TARGET bintools PROPERTY readelf_flag_infile "")
  55. set_property(TARGET bintools PROPERTY readelf_flag_outfile "--output=")