When using the command macro $link_objects, the file names seem to be emitted in the order which the source files appear in the project view. Is there any way to alter that order?
For example, a project consists of boot.s (startup code) and main.c. $link_objects evaluates to "main.o boot.o". Is there any way to get this to become "boot.o main.o"?
Thanks!