0

I have been working with the Tiny C Compiler and am trying to create a static library. I have search the TCC documentation but have not found anything about creating a static library. Is creating a static library possible with TCC?

NikolaPi
  • 169
  • 1
  • 9

1 Answers1

0

You create a static library the same way you do with any other compiler. You generate .o files from all the .c files, and combine them into a library with the ar command.

Barmar
  • 741,623
  • 53
  • 500
  • 612