File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -395,8 +395,9 @@ def create_tab_file(self, binaries):
395
395
elf2tab_ver = self .checked_command_output (["elf2tab" , "--version" ]).split (
396
396
"\n " , maxsplit = 1 )[0 ]
397
397
if elf2tab_ver != "elf2tab 0.5.0" :
398
- fatal ("Unsupported elf2tab version {!a}. Please use 0.5.0." .format (
399
- elf2tab_ver ))
398
+ error (
399
+ ("Detected unsupported elf2tab version {!a}. The following "
400
+ "commands may fail. Please use 0.5.0 instead." ).format (elf2tab_ver ))
400
401
os .makedirs (self .tab_folder , exist_ok = True )
401
402
tab_filename = os .path .join (self .tab_folder ,
402
403
"{}.tab" .format (self .args .application ))
Original file line number Diff line number Diff line change @@ -90,4 +90,4 @@ pip3 install --user --upgrade 'tockloader~=1.4' six intelhex
90
90
rustup target add thumbv7em-none-eabi
91
91
92
92
# Install dependency to create applications.
93
- cargo install elf2tab
93
+ cargo install elf2tab --version 0.5.0
You can’t perform that action at this time.
0 commit comments