Lines Matching +full:always +full:- +full:on

8 # - memusage    : Tool for reporting target memory usage
10 # - disassembly : Tool for disassemble the target
11 # - elfconvert : Tool for converting from elf into another format.
12 # - readelf : Tool for elf file processing
13 # - strip : Tool for symbol stripping
14 # - symbols : Tool for listing symbols in a binary
17 # - <tool>_command : Name of executable to call
18 # - <tool>_flag : Flags that must always be used with this command
19 # - <tool>_flag_infile : Flag to use when specifying the file to process
20 # - <tool>_flag_outfile : Flag to use to specify the result of the processing.
22 # each tool might require more flags depending on its use, as example:
23 # - elfconvert_flag_section_remove : Flag to use when specifying sections to remove
24 # - readelf_flags_headers : Flag to use to specify headers should be displayed
31 # This is done, so that unexpected calls to non-implemented command can be easily detected.
33 # set_property(TARGET bintools PROPERTY <command>_command ${CMAKE_COMMAND} -E echo "")
38 # scheme does not cover the exact needs. For those use-cases it is possible
43 # set_property(TARGET bintools PROPERTY elfconvert_flag_final -P custom_elfconvert.cmake)
44 # set_property(TARGET bintools PROPERTY elfconvert_flag_strip_all "-DSTRIP_ALL=True")
45 # set_property(TARGET bintools PROPERTY elfconvert_flag_infile "-DINFILE=")
46 # set_property(TARGET bintools PROPERTY elfconvert_flag_outfile "-DOUT_FILE=")
53 # - memusage : Name of command to execute
56 # memusage_flag : Flags that must always be applied when calling memusage command
57 # memusage_flag_final : Flags that must always be applied last at the memusage command
62 # - elfconvert : Name of command for elf file conversion.
65 # elfconvert_flag : Flags that must always be applied when calling elfconvert comma…
66 # elfconvert_flag_final : Flags that must always be applied last at the elfconvert command
83 # - disassembly : Name of command for disassembly of files
85 # disassembly_flag : Flags that must always be applied when calling disassembly com…
86 # disassembly_flag_final : Flags that must always be applied last at the disassembly comm…
94 # - readelf : Name of command for reading elf files.
96 # readelf_flag : Flags that must always be applied when calling readelf command
97 # readelf_flag_final : Flags that must always be applied last at the readelf command
104 # - strip: Name of command for stripping symbols
106 # strip_flag : Flags that must always be applied when calling strip command
107 # strip_flag_final : Flags that must always be applied last at the strip command
114 # - symbols : Name of command for printing out symbols
121 set(COMMAND_NOT_SUPPORTED "command not supported on bintools: ")
123 # If memusage is supported as post-build command, set memusage_type to: command
133 set_property(TARGET bintools PROPERTY disassembly_command ${CMAKE_COMMAND} -E echo "disassembly ${C…
140 # elfconvert to use for transforming an elf file into another format, such as intel hex, s-rec, bin…
141 set_property(TARGET bintools PROPERTY elfconvert_command ${CMAKE_COMMAND} -E echo "elfconvert ${COM…
153 set_property(TARGET bintools PROPERTY readelf_command ${CMAKE_COMMAND} -E echo "readelf ${COMMAND_N…
161 set_property(TARGET bintools PROPERTY strip_command ${CMAKE_COMMAND} -E echo "strip ${COMMAND_NOT_S…