bintools: append ; to > to ensure a space
Ensure > is an independent argument. The ; will ensure that the `>` and `outfile` are given as two arguments and thus ensure correct behavior in all cases. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
This commit is contained in:
parent
249aa62c27
commit
c08ef381c8
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ set_property(TARGET bintools PROPERTY disassembly_flag_inline_source -S)
|
|||
set_property(TARGET bintools PROPERTY disassembly_flag_all -SDz)
|
||||
|
||||
set_property(TARGET bintools PROPERTY disassembly_flag_infile "")
|
||||
set_property(TARGET bintools PROPERTY disassembly_flag_outfile > )
|
||||
set_property(TARGET bintools PROPERTY disassembly_flag_outfile ">;" )
|
||||
|
||||
#
|
||||
# - strip: Name of command for stripping symbols
|
||||
|
@ -114,7 +114,7 @@ set_property(TARGET bintools PROPERTY readelf_flag_final "")
|
|||
set_property(TARGET bintools PROPERTY readelf_flag_headers -e)
|
||||
|
||||
set_property(TARGET bintools PROPERTY readelf_flag_infile "")
|
||||
set_property(TARGET bintools PROPERTY readelf_flag_outfile > )
|
||||
set_property(TARGET bintools PROPERTY readelf_flag_outfile ">;" )
|
||||
|
||||
# Example on how to support dwarfdump instead of readelf
|
||||
#set_property(TARGET bintools PROPERTY readelf_command dwarfdump)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue