The linker is part of the toolchain for producing executables from source code written in compiled programming languages. It takes compiled object code in multiple files and produces a single, "linked", executable file from them.

learn more… | top users | synonyms (1)

74
votes
8answers
29k views

Linker order - GCC

Why does the order in which libraries are linked sometimes cause errors?
70
votes
10answers
37k 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, ...
62
votes
9answers
27k 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 ...
62
votes
8answers
3k 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 ...
61
votes
1answer
24k 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 ...
59
votes
2answers
4k 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?
58
votes
4answers
17k 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 ...
55
votes
10answers
25k 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 ...
54
votes
5answers
151k 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 ...
50
votes
1answer
608 views

GHCi runtime linker issue when using FFI declarations

I have a problem regarding FFI in Haskell and the interactive mode of GHC again. Consider FFISo.hs: {-# LANGUAGE OverloadedStrings #-} module Main where import qualified Data.ByteString.Char8 as B ...
45
votes
8answers
42k 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 ...
43
votes
6answers
36k 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 ...
42
votes
2answers
891 views

Can I link a plain file into my executable?

Some frameworks (Qt, Windows, Gtk...) offer functionality to add resources to your binaries. I wonder if it would be possible to achieve this without the framework, since all that is really needed is ...
42
votes
5answers
10k views

Why does the general program usually start at 0x8000?

I am not new to bootloader and system SW, but I don't know the origin of the reason why the general program starts at 0x8000. I already know the address 0x8000 has been used as start address in normal ...
40
votes
3answers
5k 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?
39
votes
10answers
70k 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 ...
38
votes
3answers
10k 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 ...
37
votes
4answers
15k 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. It's more curiosity than anything. Is there some kind of Mac OS X or BSD specific tool to do this? This ...
33
votes
3answers
19k views

Resolving LNK4098: defaultlib 'MSVCRT' conflicts with

This warning: LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library is a fairly common warning in Visual Studio> I'd like to understand the exact ...
32
votes
1answer
87k 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: ...
31
votes
4answers
1k views

How do I determine the fastest link order?

I have about 50 different static libraries being linked into my c++ project and the linking takes on average 70s. I've found that moving around with the link order of the libraries changes this ...
29
votes
5answers
24k 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 ...
28
votes
4answers
13k views

Linking static libraries to other static libraries

I have a small piece of code that depends on many static libraries (a_1-a_n). I'd like to package up that code in a static library and make it available to other people. My static library, lets call ...
27
votes
7answers
4k 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).
27
votes
3answers
23k 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 ...
26
votes
3answers
811 views

Why are (member) function pointers behaving so weirdly in Visual C++?

I've had a really bizarre problem that I've reduced to the following test case: #include <iostream> #include <map> #include <string> struct Test { std::map<std::string, void ...
26
votes
5answers
846 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? ...
25
votes
8answers
17k 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 ...
25
votes
5answers
19k 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 ...
25
votes
2answers
7k 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 ...
24
votes
4answers
18k views

Help with Linker error LNK2038 !

I am trying to port a small app of mine from Win XP and VS 2005 to Win 7 and VS 2010. The app compiles and runs smoothly in Debug mode, however in Release mode I get the following error : ...
23
votes
4answers
14k 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 ...
23
votes
12answers
3k 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 ...
23
votes
3answers
13k views

How can I link to a specific glibc version?

When I compile something on my Ubuntu Lucid 10.04 PC it gets linked against glibc. Lucid uses 2.11 of glibc. When I run this binary on another PC with an older glibc, the command fails saying there's ...
23
votes
7answers
1k views

How can adding a function call cause other symbols to become undefined when linking?

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 call, my ...
22
votes
3answers
4k 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 ...
22
votes
4answers
18k 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: ...
21
votes
1answer
11k 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 ...
21
votes
3answers
9k views

How to static link on OS X

I'm trying to link to a static library on OS X. I used the -static flag in the gcc command but I an error message: ld_classic: can't locate file for: -lcrt0.o collect2: ld returned 1 exit status I ...
21
votes
6answers
6k views

Apple Mach-O Linker Error ZBarSDK error when building for distribution

I just got this same error when using ZBarSDK, a bar scanning library for iOS. It runs fine when I upload it to my development device or test it on the iOS6 simulator. But when I try to run it for ...
21
votes
1answer
3k 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 ...
20
votes
5answers
9k views

What is the equivalent of Linux's ldd on windows?

What is the equivalent of Linux's ldd on windows?
20
votes
5answers
16k views

GCC: static linking only some libraries

How can I statically link only a some specific libraries to my binary when linking with GCC? gcc ... -static ... tries to statically link all the linked libraries, but I haven't got the static ...
20
votes
2answers
326 views

How can I link with (or work around) two third-party static libraries that define the same symbols?

I can't be the only one to run into this. I have a C++ application that needs to link with one third-party and another static library set in an SDK. The SDK has, for some hideously frustrating ...
19
votes
1answer
5k views

Can I mix static and shared-object libraries when linking?

I have a C project that produces ten executables, all of which I would like to be linked in statically. The problem I am facing is that one of these executables uses a 3rd-party library of which only ...
18
votes
4answers
7k views

Difference between shared objects (.so), static libraries (.a), and DLL's (.so)?

I have been involved in some debate with respect to libraries in Linux, and would like to confirm some things. It is to my understanding (please correct me if I am wrong and I will edit my post ...
18
votes
3answers
5k views

Replacing ld with gold - any experience?

Has anyone tried to use gold instead of ld? gold promises to be much faster than ld, so it may help speeding up test cycles for large C++ applications, but can it be used as drop-in replacement for ...
18
votes
3answers
8k views

Why do I get “unresolved external symbol” errors when using templates?

When I write C++ code for a class using templates and split the code between a source (CPP) file and a header (H) file, I get a whole lot of "unresolved external symbol" errors when it comes to ...
18
votes
2answers
10k views

libz.dylib versus libz.1.2.3.dylib versus libz.1.2.5.dylib

I asked this in a comment but this seems like an issue that deserves its own question. I have a project that's shared between three different installations of XCode and two different installations of ...
18
votes
5answers
459 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 ...

1 2 3 4 5 90