DarkKnight
DarkKnight

Reputation: 131

How to compile a set of C files with a set of object files in C

So my question is that i have a set of C files (Lot of them), I have another set of c files which are already compiled and they are translated to type .o(object) and .d (dependency)

My Questions:

Required info: - C compilation - GNU tool chain - Hightec compiler

Please let me know if any more information is needed

Upvotes: 0

Views: 116

Answers (1)

downhillFromHere
downhillFromHere

Reputation: 1977

Assuming that you no longer need to touch the source code of the second set (the set of object files) and it contains no dependency on the first one (the set of .c files), I would simply cram all its .o files into a separate library and then link to it at the end.

Upvotes: 0

Related Questions