object-files
Can I link object files made by one compile to those made by another one?
To be more specific, lets assume that both compilers are on the same platform (OS + instruction set). However, one of the object files was made from a compiler-dependent code. On the other hand - the[详细]
2023-02-28 02:10 分类:问答How to link multiple assembler files for MMIX
Assume, I wrote a small li开发者_运维问答b 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 disli[详细]
2023-02-11 11:27 分类:问答Creating 16-bit .COM executables files using gcc
Is there a w开发者_如何学Pythonay to create 16-bit .COM executables (DOS) using some gcc distribution for windows (for example MINGW)?You can try to use http://www.openwatcom.org as Compiler. The Watc[详细]
2023-02-09 20:06 分类:问答How do I produce only an object file (*.o) from a CMake build target?
I\'m trying to build an object file using CMake, but I can\'t seem to get CMake to build someth开发者_StackOverflow社区ing other than a complete executable. I\'m basically looking for the result of th[详细]
2023-02-06 06:28 分类:问答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[详细]
2023-02-03 11:51 分类:问答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[详细]
2023-01-31 07:36 分类:问答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 t[详细]
2023-01-26 15:31 分类:问答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:[详细]
2023-01-23 13:42 分类:问答.obj file conversion to OpenGL model header file - indices and f parameters?
The OpenGL model header file I\'m working with contains definitio开发者_开发技巧ns along the following:[详细]
2023-01-19 13:02 分类:问答How to view symbols in object files?
How can I view symbols in开发者_开发百科 a .o file? nm does not work for me. I use g++/linux.Instead of nm, you can use the powerful objdump. See the man page for details. Try objdump -t myfile or obj[详细]
2023-01-18 22:05 分类:问答
加载中,请稍侯......