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)

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 ...
74
votes
8answers
29k views

Linker order - GCC

Why does the order in which libraries are linked sometimes cause errors?
69
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, ...
5
votes
2answers
2k views

Linker errors when compiling against glib…?

I'm having trouble compiling a simple, sample program against glib on Ubuntu. I get the following errors. I can get it to compile but not link with the -c flag, which I believe means I have the glib ...
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 ...
57
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 ...
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 ...
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 ...
17
votes
4answers
18k views

Static variables initialisation order

C++ guarantees that variables in a 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 ...
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 ...
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 ...
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 ...
7
votes
6answers
2k views

C++ template, linking error

I have a problem in calling a template class I have. I declared a new type name Array, which is a template; In the .hpp file: template <typename T> class Array { public: Array(); }; In ...
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 ...
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 ...
10
votes
2answers
2k views

Can the linker inline functions?

In the file file1.c, there is a call to a function that is implemented in the file file2.c. When I link file1.o and file2.o into an executable, if the function in file2 is very small, will the linker ...
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 ...
52
votes
5answers
150k 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 ...
12
votes
13answers
12k views

Splitting templated C++ classes into .hpp/.cpp files--is it possible?

I am getting errors trying to compile a C++ template class which is split between a .hpp and .cpp file: $ g++ -c -o main.o main.cpp $ g++ -c -o stack.o stack.cpp $ g++ -o main main.o stack.o ...
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?
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 ...
8
votes
4answers
3k views

Categories in static library for iPhone device 3.0

I have categories in my static library. Any application developer should set -ObjC flag to "Other Linker Flags" to use my static library properly. It works fine for iPhone device/iPhone Simulator 2.x ...
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 ...
10
votes
3answers
9k views

ld linker question: the --whole-archive option

The only real use of the --whole-archive linker option that I have seen is in creating shared libraries from static ones. Recently I came across Makefile(s) which always use this option when linking ...
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 ...
16
votes
8answers
5k views

iOS - Linker error after upgrading to Xcode 4.5, possibly Core Plot related

I've just upgraded to Xcode 4.5GM and tidied up some screens in my iPhone project to cope with the extra screen size on iPhone 5. The project is targeting iOS 5.1 and I've just come to build it for ...
14
votes
3answers
4k views

Undefined reference error for template method

This has been driving me mad for the past hour and a half. I know it's a small thing but cannot find what's wrong (the fact that it's a rainy Friday afternoon, of course, does not help). I have ...
15
votes
2answers
5k views

linking objective-c categories in a static library

I am developing a plugin for an iOS application. I am compiling it into a .a file which is then used by the main xcode project. So far I have create a category of the UIDevice class in this library. ...
32
votes
1answer
86k 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: ...
14
votes
2answers
8k views

VA (Virtual Adress) & RVA (Relative Virtual Address)

A file that is given as input to the linker is called Object File. The linker produces an Image file, which in turn is used as input by the loader. A blurb from "Microsoft Portable Executable ...
12
votes
5answers
8k 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 ...
6
votes
4answers
13k views

How to make weak linking work with GCC?

There seem to be 3 ways of telling GCC to weak link a symbol: __attribute__((weak_import)) __attribute__((weak)) #pragma weak symbol_name None of these work for me: #pragma weak asdf extern void ...
12
votes
4answers
12k views

crti.o file missing

I'm building a project using a gnu tool chain and everything works fine until I get to linking it, where the linker complains that it is missing/can't find crti.o. This is not one of my object files, ...
6
votes
7answers
42k views

error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup

I don't know what's wrong with it.. I can't find where the error is, commenting out the implementation doesn't resolve the error either. Header File #ifndef MAIN_SAVITCH_SEQUENCE_H #define ...
5
votes
2answers
6k views

Boost static linking

I am using the Boost library in Linux, GCC. After installing and building the Boost, I found that programs using Regex and Thread use shared Boost libraries. For my purposes, I need static linking. ...
5
votes
4answers
11k views

Increase Stack Size on Windows (GCC)

Is there a way to increase the stack size of a Windows application at compile/link time with GCC?
3
votes
2answers
1k views

How to force inclusion of “unused” object definitions in a library

My question is similar to these but doesn't seem to correlate exactly: How to force inclusion of an object file in a static library when linking into executable? Forcing symbol export with MSVC ...
2
votes
1answer
327 views

GNU Linker Map File Giving Unexpected Load Addresses

I'm working on an embedded program where I have a custom linker script. The program works, but I have noticed that there is possibly something amiss with how the linker is placing a couple of sections ...
15
votes
2answers
4k views

Linking against an old version of libc to provide greater application coverage

Linux binaries are usually dynamically linked to the core system library (libc). This keeps the memory footprint of the binary quite small but binaries which are dependent on the latest libraries will ...
11
votes
2answers
11k views

error when import zlib in iphone sdk

I have included in my iphone application and the source code I was mocking up the sample code of Molecules provided by Brad Larson, however, when I build the project, it returns the error as below. ...
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 ...
13
votes
5answers
7k views

g++: In what order should static and dynamic libraries be linked?

Let's say we got a main executable called "my_app" and it uses several other libraries: 3 libraries are linked statically, and other 3 are linked dynamically. In which order should they be linked ...
10
votes
4answers
6k views

Variable definition in header files

My very basic knowledge of C and compilation process has gone rusty lately. I was trying to figure out answer to the following question but I could not connect compilation, link and pre-processing ...
13
votes
1answer
3k views

Linking error for unit testing with XCode 4?

I want to write some logic unit tests for classes in my XCode application. In Xcode 4, I clicked on the project name in the Project Navigator, and from the bottom clicked Add Target. I chose "Cocoa ...
6
votes
4answers
9k views

c math linker problems on Ubuntu 11.10

Some strange error appeared after I upgraded my Ubuntu from (10.11, 11.04 i dont know) to 11.10. I am getting an undefined reference to 'sqrt' while using math.h and linking with -lm I'm compiling ...
4
votes
4answers
3k views

How can I build in XCode 4, for an iOS 3.1 deployment target, using libSystem.B?

I've recently upgraded from XCode 3 to 4, and now I'm having build problems with my iPhone project. I need to support older versions of iOS back to 3.1. With XCode 3.2.5, I had no problem building ...
9
votes
3answers
5k views

“LNK2022: metadata operation failed” driving me insane

I have a big solution with lots of projects, using VS2008 SP1, and at least once a day I encounter the LNK2022 error. If I do a full rebuild of the solution it builds fine, but this is not fun. It ...
7
votes
2answers
3k views

Xcode — get force_load to work with relative paths

Some libraries require the -all_load linker flag when linking to an Xcode project. However, this leads to a linker error if there are symbol conflicts among libraries. The solution is to use ...
6
votes
1answer
5k views

Windows & C++: extern & __declspec(dllimport)

What is the difference/relationship between "extern" and "__declspec(dllimport")? I found that sometimes it is necessary to use both of them, sometimes one is enough. Am I right that: "extern" is ...
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 ...

1 2 3 4 5 13