This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Arm DS IDE build VS. Arm DS Command Prompt build

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

Parents
  • Hi Ronen

    I 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 this

    Stephen

Reply
  • Hi Ronen

    I 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 this

    Stephen

Children