News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

WinARM

Started by Ronald, November 14, 2009, 10:30:57 PM

Previous topic - Next topic

Ronald

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!

mariocup

Hi Ronald,

see the CB manual section 1.11.14  Object linking order at http://www.codeblocks.org/docs/main_codeblocks_en.html for details.


Ronald

Mariocup,

Thank you! This was my "missing link" to getting WinARM working with Code::Blocks!

-Ron