Page 1 of 1

Tools Config links broken

Posted: Fri May 06, 2016 1:58 pm
by leosw
Hi all!

It looks like all Tools Configurations shortcuts are broken, because the variable is not properly used. An example here :

Code: Select all
-f "${workspace_loc:/${project_name}}/${config_name:${project_name}}/${project_name}.bin" -r


Seems to be the correct way to do that :

Code: Select all
-f "${workspace_loc:/${project_name}/${config_name:${project_name}}/${project_name}.bin}" -r


Léo

P.S. I'm not familiar with Eclipse, especially for C/C++, so I'm maybe wrong.