Facing problem to convert .obj to .coff file using objcopy command. Currently i am trying to solve this issue by using OBJCOPY Command. i tried Command objcopy -I input.O -O output. output which will be get converted to COFF format and input is in .O object format. But it's not working.
Asked
Active
Viewed 300 times
0
-
Can you explain why it's not working? – Rico Jan 27 '14 at 17:46
-
I don't Know Why it's not working.... – pseudoboom Jan 28 '14 at 07:01
-
This isn't really enough information to say what is wrong. If by ".obj" file you mean something made with "gcc -c", then you need to link your program, not use objcopy. – Tom Tromey Feb 05 '14 at 15:33