Tagged Questions
The linker is one of the tools in the toolchain for compiling compiled programs. It in general takes compiled object code in multiple files and produces a single, "linked", executable file from them.
51
votes
8answers
2k views
The State of Linkers for .NET apps (aka “Please Sir, May I have a Linker” 2009 edition)
Many people here are probably familiar with one of Joel Spolsky most popular blog posts, Please Sir, May I Have a Linker, where he cries out for a way to remove dependencies on the .NET framework so a ...
35
votes
8answers
15k views
Is it feasible to compile Python to machine code?
How feasible would it be to compile Python (possibly via an intermediate C representation) into machine code?
Presumably it would need to link to a Python runtime library, and any parts of the Python ...
35
votes
3answers
3k views
What's the best tool to graphically display memory layout from a .map file?
My build (gcc) toolchain produces a .map file. Is there a tool to analyze the memory map graphically?
33
votes
2answers
3k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
33
votes
10answers
13k views
Why do we need extern “C”{ #include <foo.h> } in C++?
Specifically:
When should we use it?
What is happening at the compiler/linker level that requires us to use it?
How in terms of compilation/linking does this solve the problems which require us ...
31
votes
9answers
12k views
30
votes
4answers
8k views
What do 'statically linked' and 'dynamically linked' mean?
I often hear the terms 'statically linked' and 'dynamically linked', often in reference to code written in C(++|#) but I don't know much of anything about either, what are they, what exactly are they ...
28
votes
7answers
11k views
Embedding DLLs in a compiled executable
You know, I haven't seen a good answer for this anywhere. Is it possible to embed a pre-existing DLL into a compiled C# executable (so that you only have one file to distribute)? If it is possible, ...
26
votes
5answers
625 views
Why does C++ linking use virtually no CPU? (updated)
On a native C++ project, linking right now can take a minute or two, yet during this time CPU drops from 100% during compilation to virtually zero. Does this mean linking is primarily a disk activity?
...
22
votes
7answers
769 views
How can adding a function call cause other symbols to become undefined when linking?
Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue.
I'm encountering a strange problem after adding a call to a new function. Without the function ...
22
votes
1answer
9k views
What does the -all_load linker flag do?
I can't find anywhere what the -all_load flag do when compiling Objective-C code.
I have some issues uploading binaries to Apple, the they say it's because I didn't use this flag, but my code ...
21
votes
11answers
2k views
What do C and Assembler actually compile to?
So I found out that C(++) programs actually don't compile to plain "binary" (I may have gotten some things wrong here, in that case I'm sorry :D) but to a range of things (symbol table, os-related ...
21
votes
5answers
19k views
Visual C++: How to disable specific linker warnings?
I'm using a library from CGAL which during the linking stage of my code compilation produces a lot of linking warnings of this form:
warning LNK4099: PDB 'vc80.pdb' was not found with ...
21
votes
5answers
10k views
What is __gxx_personality_v0 for?
This is a second-hand question from an OS development site, but it made me curious since I couldn't find a decent explanation anywhere.
When compiling and linking a free-standing C++ program using ...
20
votes
8answers
23k views
g++ undefined reference to typeinfo
I just ran across the following error (and found the solution online, but it's not present in Stack Overflow):
(.gnu.linkonce.[stuff]): undefined
reference to [method] [object
...
19
votes
5answers
50k views
ld cannot find an existing library
I am attempting to link an application with g++ on this Debian lenny system. ld is complaining it cannot find specified libraries. The specific example here is ImageMagick, but I am having similar ...
17
votes
5answers
187 views
Why are static and dynamic linkable libraries different?
If both of them contain compiled code, why can't we load the "static" files at runtime and why can't we link with the dynamic libraries at compile time? Why is there a need for separate formats to ...
17
votes
6answers
11k views
Building Boost for static linking (MinGW)
I'm building Boost (I'm using System and FileSystem) for MinGW using bjam:
bjam --toolset=gcc stage
And it builds fine, but I want to be able to statically link to it (I have to have a single file ...
17
votes
3answers
12k views
How do I make a fully statically linked .exe with Visual Studio Express 2005?
My current preferred C++ environment is the free and largely excellent Microsoft Visual Studio 2005 Express edition. From time to time I have sent release .exe files to other people with pleasing ...
16
votes
2answers
3k views
CMake: how to produce binaries “as static as possible”
I would like to have control over the type of the libraries that get found/linked with my binaries in CMake. The final goal is, to generate binaries "as static as possible" that is to link statically ...
16
votes
7answers
2k views
Making small haskell executables?
Are there any good ways to make small haskell executables? With ghc6 a simple hello world program seems to come to about 370kB (523kB before strip). Hello world in C is about 4kB (9kB before strip).
16
votes
8answers
8k views
Override a function call in C
I want to override certain function calls to various APIs for the sake of logging the calls, but I also might want to manipulate data before it is sent to the actual function.
For example, say I use ...
15
votes
2answers
331 views
getting linking error due to different library for ios and iphonesimulator?
I am using libiVisualizationChart.a library, there are separate libraries for iphoneos and iphonesimulator. I have added both the libraries in xcode project and mentioned both the library paths in ...
15
votes
1answer
1k views
Linking Windows DLL files from static libraries using CMake without hand-crafting unresolved symbol names
The Situation
I'm using Visual Studio 2008 SP1 (Professional Edition, both for 32-bit and 64-bit
builds). I'm seeking a workaround to what I believe is a very
unhelpful "limitation" in ...
14
votes
2answers
580 views
How does the compilation, linking process work?
I've been programming in C++ for a while and I wondered how the compiler and linking process actually works?
Can someone explain please?
(Note: This is meant to be an entry to Stack Overflow's ...
14
votes
5answers
425 views
C++ - Can massive nested loops cause the linker to run endlessly when compiling in Release-Mode?
I'm compiling a very small Win32 command-line application in VS2010 Release-Mode, with all speed optimizations turned on (not memory optimizations).
This application is designed to serve a single ...
14
votes
1answer
369 views
Is there an equivalent to the GNU linker “--just-symbols” option for non-GNU linkers?
-R filename
--just-symbols=filename
Read symbol names and their addresses from filename, but do not relocate it or include it in the output. This allows your output file to refer ...
14
votes
7answers
12k views
Django + Pydev/Eclipse + Google App Engine - possible?
Has anyone been able to get Google App Engine/Django working in Pydev/Eclipse? I tried this but had difficulty getting Pydev to recognize all of the externally linked folders (django plugins) that I ...
13
votes
1answer
2k views
Apple Mach-O linker (id) warning : building for MacOSX, but linking against dylib built for iOS
Starting from some point in the past xCode 4 in complaining about linker problems:
ld: warning: building for MacOSX, but linking against dylib built for iOS: ...
13
votes
7answers
29k views
GCC C++ Linker errors: Undefined reference to 'vtable for XXX', Undefined reference to 'ClassName::ClassName()'
I'm setting up a C++ project, on Ubuntu x64, using Eclipse-CDT. I'm basically doing a hello world and linking to a commerical 3rd party library.
I've included the header files, linked to their ...
13
votes
4answers
6k views
Templates: Use forward declarations to reduce compile time?
I have to deal with a library that consists of many templated classes, which are of course all implemented in header files. Now I'm trying to find a way to reduce the unbearably long compile times ...
13
votes
4answers
9k views
Static variables initialisation order
C++ guarantees that variables in compilation unit (.cpp file) are initialised in order of declaration. For number of compilation units this rule works for each one separately (I mean static variables ...
13
votes
4answers
9k views
What does the “no version information available” error from linux dynamic linker mean?
In our product we ship some linux binaries that dynamically link to system libraries like "libpam". On some customer systems we get the following error on stderr when the program runs:
./authpam: ...
13
votes
1answer
40k views
Why does fatal error “LNK1104: cannot open file 'C:\Program.obj'” occur when I compile a C++ project in Visual Studio?
I've created a new C++ project in Visual Studio 2008. No code has been written yet; Only project settings have been changed.
When I compile the project, I receive the following fatal error:
...
12
votes
3answers
1k views
Calling Haskell from C++ code
I'm currently writing an app in C++ and found that some of its functionality would be better written in Haskell. I've seen instructions on calling Haskell from C code, but is it possible to do the ...
12
votes
1answer
6k views
System.Web.Extensions Assembly cannot be resolved
I am trying to run a .NET 4.0 Console application that references a sister library project (Bar.dll) which itself references System.Web.Extensions in VS2010 B2. I am currently only interested in ...
12
votes
10answers
1k views
GCC: Empty program == 23202 bytes?
test.c:
int main()
{
return 0;
}
I haven't used any flags (I am a newb to gcc) , just the command:
gcc test.c
I have used the latest TDM build of GCC on win32.
The resulting executable is ...
12
votes
7answers
996 views
Shipping Closed-Source Application for Linux
What are some methods I can use to ship a closed-source application for linux?
At the moment the application links against a few libraries (WxWidgets, GraphcisMagic, Crypto++, etc).
Statically ...
12
votes
4answers
6k views
How do I determine the target architecture of static library (.a) on Mac OS X?
I'm interested in verifying if a given iPhone static library has been built for ARM or Intel.
Its more curiosity than anything. Is there some kind of Mac OS X or BSD specific tool to do this? This ...
12
votes
3answers
2k views
Best practices for debugging linking errors
When building projects in C++, I've found debugging linking errors to be tricky, especially when picking up other people's code. What strategies do people use for debugging and fixing linking errors?
...
11
votes
4answers
242 views
Difference in inlining functions by compiler or linker?
I am wondering whether there is any difference between inlining functions on a linker level or compiler level in terms of execution speed?
e.g. if I have all my functions in .cpp files and rely on ...
11
votes
5answers
4k views
“bad codegen, pointer diff” linker error with Xcode 4
Recompiling a C++ iPhone app with Xcode 4 I get this nasty linker error:
ld: bad codegen, pointer diff in __static_initialization_and_destruction_0(int, int)
to global weak symbol ...
11
votes
1answer
9k views
How to link against boost.system with cmake
I use a cmake generated makefile to compile a c++ file that depends on the boost filesystem library.
During the linking process I get the following error:
Undefined symbols:
...
11
votes
4answers
4k views
Linking statically in C#
I'm working on a module for a CMS. This module is distributed as a class library DLL.
I have several utility libraries I'd like to use in this module. Is there anyway I can link these libraries ...
10
votes
4answers
149 views
What is “object” in “object file” and why is it called this way?
I was asked a question: "What is an 'object file'?".
After looking at Wiki, I only know that it contains objects.
But what are those objects and why someone called them that way?
10
votes
1answer
254 views
Can't link OpenCL on Windows with GHC
I'm trying to get the OpenCLRaw bindings to a point where I can use them on windows. I've forked the the OpenCLRaw repo on github so I can make modifications as needed. My branch is here:
...
10
votes
4answers
232 views
Overhead in unused code
I am wondering what the overhead is of having unused functions in your code.
Say for example you have some debug logging, and you then give most of your objects a ToString() function that is being ...
10
votes
3answers
1k views
VC8 to VC10 - LNK2005 errors
I recently installed Visual Studio 2010 and used CMake to generate the solution files for my project. This process had previously worked fine on VS2005.
The first issue I encountered was because of ...
10
votes
7answers
893 views
How can I compile Programmer Dvorak?
I'm trying to compile the open source project Programmer Dvorak. The problem is that it's a bit old and doesn't build with the current versions of the build tools.
You can see the full source code ...
10
votes
2answers
2k views
crt0.o and crt1.o — What's the difference?
recently I've been trying to debug some low level work and I could not find the crt0.S for the compiler(avr-gcc) but I did find a crt1.S (and the same with the corresponding .o files)
What is the ...