Skip to main content
SHung.140
Visitor II
October 16, 2019
Question

Hello, I got some procompiled .o files (Atollic studio) for my CubeIDE Project. In which way can i include this files. Best regards Stephan

  • October 16, 2019
  • 2 replies
  • 655 views

..

This topic has been closed for replies.

2 replies

turboscrew
Senior III
October 17, 2019

You compile your code with header files that contain the definitions of the global symbols of the object files, and then link the object files with the program.

Ozone
Principal
October 17, 2019

You can use the ranlib tool to create a library. It is usually part of the gcc toolchain.

And yes, you would need the headers for the compiler.