A question about OBJ files

Started by Gerome, September 24, 2004, 09:26:15 AM

Previous topic - Next topic

Gerome

Hi,

I have 3 C files i compile separately...
They give me 3 different OBJ files...
Is there a way/trick of making those 3 OBJ file as 1 by injecting the 3 ones into one single OBJ ?

Thanks in advance

Vortex

Maybe, this should help you:

main.c

#include "procedure1.c"
#include "otherproc.c"
#include "procedure3.c"
Code it... That's all...

Gerome

Hi,

Quote from: "Vortex"Maybe, this should help you:

main.c

#include "procedure1.c"
#include "otherproc.c"
#include "procedure3.c"

Thanks, but that does not fit me.
BTW, i guess the LD.EXE utility from MinGW fits my research :)

Vortex

Salut Gerome,

Another solution, why not to make a static library from those three object files?
Code it... That's all...

Gerome

Hi,

Quote from: "Vortex"Salut Gerome,

Another solution, why not to make a static library from those three object files?

Because i want to make one single OBJ :)
I've found the tool that does that and how to convert'em as ELF or PE ones :)

Vortex

Hi Jerome,

Which one is the tool you have found? Can you describe how to merge the object files?

Thanks,

Vortex
Code it... That's all...

Pelle

Good that you found a solution, Gerome. I have never seen this a problem, so I don't have a tool for it.

Pelle
/Pelle