Is there a way to perform only a re-link in uVision, rather than building/compiling? I am just changing the scatter file and just want to test it by re-linking.
If you click the build button (F7) rather than the re-build button, it should only perform the link step, assuming the other sources are not touched.
Thanks. I'm aware of F7 but the the problem is I have some user "Before Build/Rebuild" and "After Build/Rebuild" steps, which run. In some cases I just want to relink the code without these steps being run as they are time consuming. A button that only links the code would be very useful..
As the project manager only has the concept of "Build", and not individual steps (Compile, Link...), I do not believe this is possible.
There is no button for 'Link only'. If you need this functionality more often, you could put the Linker invocation into the 'Tools' menu (see µVision Tools Menu ). You would have to invoke the linker with all options manually, which could be different to the linker invocation from the build process. Just an idea.