Tagged Questions
The object-file tag has no wiki summary.
6
votes
3answers
198 views
On what does the size of an C++ object file depend?
Whenever we compile a c++ file, an obj file is generated. I want to know that on what factors does the size of the obj file depend?
Just to make my question more clear,
For example a c++ file ...
4
votes
1answer
80 views
C++ compiling of a .o file without the .cc file
I have a program were I was given the compiled .o file but I do not have the original .cc file and also I only have a half-way finished header file. The header file has all the method signatures but ...
4
votes
4answers
139 views
How can I see the 0s and 1s / machine code from a executable file / object file?
I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like:
üÙ
4
votes
3answers
573 views
Doubts in executable and relocatable object file
I have written a simple Hello World program.
#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}
I wanted to understand how the relocatable object file and ...
3
votes
3answers
636 views
Can't link assembly file in Mac OS X using ld
I'm trying to run a basic assembly file using 64 Bit Mac OS X Lion, using nasm and ld which are installed by default with Xcode.
I've written an assembly file, which prints a character, and I got it ...
3
votes
2answers
2k views
Convert .o file to .exe
Is it possible to convert an object file .o that was created from a .c source code to .exe?
And if it is possible is there a direct command using gcc?
2
votes
2answers
215 views
Problem when using C object file (.o) in different computers
I'm trying to create an object file which can be useable in any computer. So what I did was create bunch of functions and placed them in a .c file. Used gcc -c myfile.c which produces myfile.o. (I'm ...
2
votes
1answer
1k views
What is the difference between a .o object file and a .so library file?
Like the title says, what is the difference between a "program object file" (.o extension) and a "library file" (.so extension)
2
votes
5answers
2k views
My C++ object file is too big
I am working on a C++ program and the compiled object code from a single 1200-line file (which initializes a rather complex state machine) comes out to nearly a megabyte. What could be making the file ...
1
vote
1answer
504 views
.obj file conversion to OpenGL model header file - indices and f parameters?
The OpenGL model header file I'm working with contains definitions along the following:
static const float modelVertices[NUM_OBJECT_VERTEX * 3] = {}
static const float ...
1
vote
2answers
412 views
Object files in an executable in Linux
Is there a way to find the object files from which the current executable is generated in Linux (RHEL to be specific). I understand that one can use "nm" to find the exported symbols, "ldd" to find ...
0
votes
1answer
22 views
how to debug fortran program with multiple object files?
I have a fortran program that calls some dependent .o object files. I would like to be able to step across files when debugging, is this possible?
the compilation routine goes something like this:
...
0
votes
1answer
40 views
symtab entries in a .o file of elf format
i am learning about linking..
i wrote the following code in c and made .o using gcc
int f()
{
static int x=0;
return x;
}
extern int z;
int g()
{
static int x=10;
return x;
}
static int y;
static ...
0
votes
0answers
19 views
General linking design and linking static libraries - do linkers only link components from static libraries that they need?
I was reading the second edition of Bjarne Stroustrup's "The C++ Programming Language 2nd Edition" and stumbled upon the following passage (in the section about linking):
"The linker that the CC ...
0
votes
0answers
42 views
Executable file size depends on object file content
I have many source code files (C) that I archive (using AR) into a static library for a later use when creating an executable.
There are two ways to do so:
1.Add all objects (.o) files into an ...
0
votes
1answer
107 views
Implementing tool that tracks down C memory errors, finding where my overrided malloc etc is called from
I've been asked to implement a tool ( for linux ) which helps with the memory management of C/C++ programs. Main objective is to track down memory leaks but I am also checking for overlapping ...
0
votes
1answer
44 views
“.OFF” descriptions
I'd like to make a scene that uses meshes and primitives (such as spheres, cylinders, boxes, etc). I was wondering if there are any recommendations with regard to where I can go to find .off files ...
-1
votes
1answer
33 views
Extracting a single procedure from an object file?
I have a 64-bit COFF object file (no source code or debug info) from which I need to extract a single procedure.
The procedure is relatively short, and its only dependencies are:
One global ...