Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
538 views

Why Compile to an Object File First?

In the last year I've started programming in Fortran working at a research university. Most of my prior experience is in web languages like PHP or old ASP, so I'm a newbie to compile statements as ...
5
votes
1answer
80 views

How do the tries work that are used in the mmo object format's symbol tables?

I try to understand, how the mmo object file format works, which is used for Don Knuth's educational MMIX architecture. I have not bought MMIXware, so I have to guess most of the details from the ...
5
votes
1answer
431 views

Incremental linking using gcc on linux. Is it possible?

The way my team's project is developed, we generate a Shared Object library for our application from all all of our .o object files. My task (hopefully it is specific enough but also general enough to ...
4
votes
0answers
238 views

Pre-compiled Windows OMF BLAS/LAPACK?

Is there anywhere I can get pre-compiled BLAS and LAPACK binaries for Windows in OMF object format? I want to link some D language code to these. I'm aware of where I can get the relevant libs in ...
4
votes
2answers
2k views

What is the difference between .LIB and .OBJ files? (Visual Studio C++)

I know .OBJ is the result of compiling a unit of compilation and .LIB is a static library that can be created from several .OBJ, but this difference seems to be only in the number of units of ...
3
votes
2answers
429 views

Error While Linking Multiple C Object files in Delphi 2007

I am new to delphi. I was trying to add C Object files in my Delphi project and link them directly since Delphi Supports C Object Linking. I got it working when i link a single Object file. But when i ...
2
votes
2answers
201 views

How to link multiple assembler files for MMIX

Assume, I wrote a small lib implementing something "fprint"-likely. The book that teaches me MMIX (Das MMIX-Buch, german) always copies the whole lib into the new program, but I dislike this approach. ...
2
votes
1answer
769 views

How to put generated files (e.g. object files) into a separate folder when using Qt/qmake?

I have a Qt project that uses qmake. To improve clarity and readability, I'd like to keep the source files build system generated files (such as object files) separate. So my first step was ...
2
votes
5answers
230 views

Need help with understanding compilation of C++ programs

I don't properly understand compilation and linking of C++ programs. Is there a way, I can look at object files generated by compiling a C++ program(in an understandable format). This should help me ...
1
vote
2answers
27 views

How to build a library directly from object files with CMake

Given a set of object files, how would you build a static library with CMake ? With autotools I would do libXXX.a: $(OBJFILES) $(AR) cru $@ $(OBJFILES) $(RANLIB) $@ OBJFILES being a list ...
1
vote
2answers
29 views

Why is a static libraries only a bag of object files, without any usual interdependent optimization or reordering?

When linking a shared library (or at least a Windows DLL), lots of optimizations are possible, and all functions and classes are thrown together and reorganized for optimal performance (or so I would ...
1
vote
1answer
44 views

Sharing intermediate files between C++ projects?

I'm currently trying to figure out whether it is possible for two different native Visual-C++ projects (that have exactly the same compiler settings) to share their intermediate files (obj, pch, ...) ...
1
vote
0answers
72 views

Change ELF Endian Data Format

I am trying to edit some software to work with both Big and Little Endian ELF/DWARF files. In order to this, I think it would be a good idea to have both a Little and Big ELF file of the same data. I ...
1
vote
1answer
57 views

Windows Executable file structure

I know that generally the object file has code, data, heap and stack sections. But I want to know hew this is arranged in windows executables and Linux executables. I searched on internet and found ...
1
vote
1answer
71 views

merging object files after compiling executable

i have an executable with many .o files. i would like to reduce these object files to one file but i don't have the source code for the executable. is archiving them using "ar" is the way to do it or ...
1
vote
5answers
123 views

Linking object files, making include redundant?

I am trying my hand at a bit of C. And I thought I had understood this linking business. But I guess not. I have a simple file main.c: #include "function.h" int main(char args[]) { int print = ...
1
vote
1answer
505 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
1k views

Relation between object file and shared object file

what is the relation b/w shared object(.so) file and object(.o) file can you please explain via example Thanks in advance
0
votes
1answer
37 views

Generate object files “.o” while compiling project in Visual Studio C++

I'm trying to generate the ".o" output of my ".cpp" files of my project in Microsoft Visual Studio C++ 2010. I already found the answer that says that to compile without link you have to just press ...
0
votes
1answer
68 views

LWJGL .OBJ File reader sometimes disforming or not rendering the file

I am working on a game with some friends, and to make life easier I decided all out 3D models are going to be made using .obj files, exported in programs like 3DSMax, Maya, and Blender3D. So I have ...
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
3answers
183 views

Link .o (C object file) to C++ file/project on Linux

I have a problem with .o file in linux as follow: I have Visual.cpp which call function ECL_Drawrect() and this function is defined as: #define ECL_Drawrect ECL_bDrawrect In my Visual.cpp I also ...
0
votes
0answers
30 views

magic file format entry (/usr/share/misc/magic) for cl.exe generated obj files

Does anyone have magic entries that covers object files generated by microsoft's cl.exe compiler? Currently file on cygwin just says "data" which is not that helpful. Specifically I would like to be ...
0
votes
1answer
44 views

WxWidgets Compile Help

I tried to compile WxWidgets (Latest; VC9; Release), but it outputted only *.obj and *.pch files, no *.lib files. I know *.obj files are Object Files and *.pch files are Pre-Compiled Headers, but do I ...
0
votes
0answers
60 views

Bloated object file for iOS

I have a set of 400 source files that I am building for iOS. After build I am noticing that each object file is around 4.5 MB for debug builds. The resulting static library is more than 2 GB but the ...
0
votes
1answer
158 views

Creating 16-bit .COM executables files using gcc

Is there a way to create 16-bit .COM executables (DOS) using some gcc distribution for windows (for example MINGW)?
0
votes
1answer
372 views

How to add object files to a project in Qt

Currently the linker in one project has problems linking to object files generated by source files in another project. Is there some way to manually add those object files to Qt?
0
votes
3answers
185 views

Typedefs, (binary) Code duplication and Object File

Suppose I compile a source file file which contains this piece of code, struct Point { int x; int y; }; struct Size { int x; int y; }; Since Point and Size is exactly same (in ...
0
votes
3answers
169 views

Templated function being reported as “undefined reference” during compilation

These are my files: --------[ c.hpp ]-------- #ifndef _C #define _C #include<iostream> class C { public: template<class CARTYPE> void call(CARTYPE& c); }; #endif --------[ ...
0
votes
1answer
308 views

How to read the C++ CLI .obj files (result of compilation of a single file)

I have a small (<300 lines) C++ file in a C++ CLI project in Visual Studio 2010. I have crafted some macros which do different things depending on the Debug/Release configurations. I would like to ...
0
votes
1answer
134 views

structure of object files

i'm kinda having some issues with linking my assembly. I use NASM for assembly and then I link it with ld. One minor problem is that the GLOBAL directive only works if I define .data section which.. I ...
0
votes
4answers
104 views

Automatically choosing object files for compilation

I have recently begun writing unit tests (using GoogleTest) for a C++ project. Building the main project is fairly simple: I use GCC's -MM and -MD flags to automatically generate dependencies for my ...
0
votes
1answer
59 views

How do you get the initialized value of a global variable out of an object file?

If you have an object file, how do you get the initialized value of a global variable in that object file's data segment? For example, say I've done the following: # I'm interested in the variable ...