Hi,
I have noticed that the build output of a certain project via Arm DS IDE is different than the build output of the same project using Arm Command Prompt.
Both options has the same compiler and linker, so how come?
Thanks,Ronen
Hi RonenI suspect the order in which object files are presented to the linker is different in the two cases. You should be able to see this by looking at the linker command lines shown the Arm DS IDE (in the Console view) and by make (on the command-line). There's no way to change the ordering that the Arm DS IDE chooses, but you can make the object file ordering explicit in the makefile if you wish.Let me know if you need any more help with thisStephen
Hi Stephen,
I understood.Appreciating your help so far.
Thanks, Ronen