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)

0
votes
1answer
12 views

c++ LNK2001: unresolved external symbol error

I am currently creating an application that overlays multiple image elements on a feed from a webcam. I followed this guide in order to display the webcam feed ...
0
votes
2answers
10 views

MSVC 2012: linker not using the dependency DLL

I have two projects in the same solution (MSVC 2012): one exe and the other is dll. The exe project depends one the dll. However when linking the exe I get 'unresolved' errors for the functions ...
0
votes
0answers
27 views

Unresolved External Symbol Linker error

I have a linker problem in my project. I am using a class, NXU_helper, which came with an NVIDIA PhysX physics engine. I have both the header and cpp files, as well as the other files included in ...
0
votes
0answers
6 views

EmbeddedMySQL can't initialize in Ubuntu (unknown error 1146)

I'm trying to compile a small test program for embedded MYSQL: #include <iostream> #include <stdlib.h> #include <mysql.h> static char *server_args[] = { "this_program", ...
0
votes
1answer
23 views

is `libc` and `crt1.o` statically or dynamically linked?

I'm really just trying to get my head around static and dynamic linking. When I invoke a compilation driver like unix> gcc myfile.c, crt1.o and libc.a (or libc.dylib) are linked to produce the ...
0
votes
0answers
19 views

Linker errors (LNK2001) with Boost library (filesystem.hpp) in CLI/CLR code

I have been trying to figure this out for a few days and can't seem to find a solution. I am creating a Windows Forms application inside of MSVS 2012 (but the application itself is using MSVS 2010 ...
0
votes
1answer
22 views

statically linked libraries on mac

I just don't understand. I'm to believe that gcc automatically links libc.a when invoking the gcc driver. However, out of curiosity I wanted to link libc.a statically using -static, but I get; ld: ...
0
votes
0answers
58 views

How to properly link and include libraries?

It's the first time I prepare a pretty complex application in C++ (Visual Studio 2010) and I have serious linking problems which gave me a solid headache (maybe cause I've never got what it's all ...
2
votes
1answer
14 views

How to link C/C++ static library built for Android in Apportable?

This is related to my previous question. If I have some C/C++ static library which is pre-built for Android, can I link it to my application with Apportable build tools? If it is possible, how can I ...
1
vote
1answer
29 views

How linux does load libraries in application

I'm interested how does linux act in situation that pictured. You can see library "A" is staticaly linked with application. But this application depends on dynamic library B, and it in turn depends ...
0
votes
2answers
42 views

Class definition in a header c++

I have this code: #include <time.h> class ElapsedTime { time_t _startTime; public: ElapsedTime(void){ time(&_startTime); } double MiliSecond() { ...
0
votes
1answer
27 views

CMake: how to point to the latest version of a library?

My CMakeLists.txt file makes cmake point to the wrong version of Boost: find_package(Boost COMPONENTS program_options) In my case it points to Boost 1.39 in /otherDir/boost instead of Boost 1.50 in ...
0
votes
0answers
25 views

iOS archive with error linker command failed with exit code 1

When I run my app on my iPhone simulator, I get no errors and it runs. Yet, when I attempt to archive my app it gives me the error linker command failed with exit code 1 (use -v to see invocation) ...
0
votes
2answers
47 views

Problems linking GLEW with Visual Studios

I have tried several ways to get GLEW working with my VS2010 project. No success. At first I tried using the pre-built libs and dlls from the website. I downloaded these pre-built files from ...
0
votes
1answer
15 views

Undefined References After Linking Against Static Library

I wrote a simple program to test if xdotool can fulfill my requirements. (Well, not really. My first step is to make sure if I can make calls into the xdotool library.) #include <xdo.h> ...
0
votes
1answer
19 views

Linker error undefined reference to… an included library in c

I've searched a lot for this but i can't really figure this out. My project consists of 5 .c files and 4 .h headers. all in the same folder. I compile them separately succesfully but when it comes to ...
0
votes
0answers
9 views

GNU ld: What is the difference between these two linker scripts?

It looks like a game of "spot the difference" for software engineers at first, but the tiny difference in syntax apparently makes a huge difference in linking behaviour. ldscript1: ...
-1
votes
0answers
13 views

XE3 Metropolis Grid app error with SQLITE components [closed]

In XE3 RAD STUDIO, I added a new project on GridView Metropolis, after dragging in SQLite tables from Data Explorer and doing livebinding, I compiled fine but got the below linking problem: Any help ...
0
votes
0answers
15 views

Linking and compiling armadillo in Xcode 4

I am a Mac OS X 10.8.3 user (Mountain Lion). I have download armadillo and installed it in OS X as per README.txt instructions. It compiles fine by typing: g++ ... *stuff* ... -O2 -larmadillo in ...
0
votes
1answer
27 views

Visual Studio solution with different projects with functions of the identical name

I have a VS10 solution that contains 2 projects that have functions of the identical name. The linker complains (throws warnings) about second definitions (of two functions of the same name) getting ...
0
votes
1answer
16 views

How to manage libstdc++.so.6: wrong ELF class: ELFCLASS64 at computer cluster

I have a problem with the libstdc++.so.6 library when I execute a program in MATLAB. The code works fine on my laptop and my desktop, which is why I'm sure the problem is a library or linking ...
0
votes
0answers
8 views

Set DF_SYMBOLIC flag to existing library

Is there a way to set a DF_SYMBOLIC to existing library? I want to use symbols from this library instead of binary's symbols and don't want use LD_PRELOAD each time I launch the binary.
-1
votes
0answers
21 views

WSO2/WSF linking standard [closed]

Does anyone know how to link the WSO2/WSF framework to a project in VS 2010. I've tried all the available methods in VS 2010 (__stdcall, __fastcall, _cdecl), but none of them worked. It compiles OK, ...
1
vote
2answers
41 views

Conditional linking through static library

I’m writing a big static library in C++. In that library, I use symbols from plenty of static and dynamic libraries. When I “make” it, I don’t need to link against any libs because it’s static. Here’s ...
0
votes
0answers
24 views

C++ DirectX 11 MSVCRTD.lib not

I'm trying to learn directX 11 with the tutorial from rastertek.com, but when I try to compile I got the error: 'LINK : fatal error LNK1104: "MSVCRTD.lib" cannot open file.' I set the include and ...
0
votes
1answer
24 views

Linking with another start-up file

I am trying to link a program with my own start-up file by using the STARTUP directive in a LD script: ... ENTRY(_start) STARTUP(my_crt1.o) ... GCC driver is used to link the program (not to bother ...
1
vote
1answer
38 views

Locate linking location used by visual studio

This seems like it would be a common question, but I can't seem to find an answer: Is there a way to locate the specific library that VS uses to link a particular function at link time? I'm using ...
1
vote
1answer
49 views

Cant link assembly and c

I have problems with linking c and assembly code. Tried to search some solutions, but none of which I found worked for me. c file "l3.c" looks like this: #include <stdio.h> #include ...
0
votes
2answers
22 views

Library links to /usr/lib64, but I need the one from /usr/local/lib64

I'm getting this weird problem ag: /usr/lib64/liblzma.so.5: no version information available (required by ag) For some reason the preinstalled library is no good. Okay, so I install liblzma from ...
0
votes
1answer
13 views

Does order of linker flags matter when running linking step in C++?

My original question is below, but it evolved to the following related question: is there anything wrong with putting linker flags after the objects in the linker statement? When I build in ...
0
votes
0answers
19 views

MVSC deletes lib and dll when building exe

I have a create a new solution in MVS with two project: an exe application and its dynamic library. For the Release configuration I made the linker create the exe, dll and lib inside the same folder. ...
0
votes
1answer
32 views

Problems with linking C++ code

I'm tying to learn how to make and use a static library and I've faced some problems. This is what I've done. First I've written some code and placed in into String.h and String.cpp files. Then I've ...
0
votes
1answer
11 views

How does Visual Studio 2010 successfully link with a library that is not in the link list

How does Visual Studio 2010 successfully link with a library that is not in the link list? I am building a .dll call it user.dll, that depends on a .dll call it required.dll. In Visual Studio ...
0
votes
0answers
23 views

Hiding symbols from binary

Good day! I have binary, in which lib foo is statically compiled. Then, in runtime I dlopen bar.so, which dependencies include foo.so. Can I somehow "hide" symbols from statically compiled foo and ...
0
votes
4answers
32 views

Linux - find the path of g++ lib

I installed these two libraries: glut and curl. sudo apt-get install libcurl4-gnutls-dev sudo apt-get install freeglut3-dev when I have to compile a program I use: g++ -o executable file11.cpp ...
0
votes
0answers
15 views

Can using /NODEFAULTLIB lead to access violations?

I'm linking against a Qt5 library, that has been compiled with the Multithreaded Debug DLL option turned on, but I really need to use Multithreaded Debug only. In order to avoid linker errors and ...
0
votes
1answer
27 views

Error: LNK1104: cannot open file

So I have a really stupid problem. Since recently my anti-virus kept complaining about my program every time I build and ran it, and just now I accidently "removed the threat". Now I keep getting the ...
-1
votes
0answers
27 views

ZeroMQ hello world server not linking in VC++ 2012

Good morning everyone! I'm trying to learn how to use ZeroMQ. First of all, I faced problems when trying to compile the Hello, world! example. I'm using this C++ server code: ...
0
votes
1answer
42 views

Using ffmpeg static libraries in an visual studio explress C++ 2010 project

As the title says, I have been trying to get ffmpeg/libav libraries to work in MSVC++ 2010. However, I keep running in the following error while coding on debug mode. code: extern "C" { ...
0
votes
1answer
22 views

Visual C++ : Where to add reference of a static library that I use?

In Visual C++ 2010, how to tell the linker that a static library named taglib is located in d:\blabla\tag.lib ? Thanks in advance. PS : I have this error, probably because the linker doesn't know ...
1
vote
0answers
20 views

How to determine CString Type for Linking?

I got a 3rd Party library that I want to link against. I am having trouble determine the kind of CString I need to provide. My character set is set to none set and changing it would be prohibitively ...
0
votes
0answers
17 views

What does “Strips nonglobal symbols but saves external symbols” mean in practice?

I'm looking at an Xcode project that has set the Strip Linked Product to YES and Strip Style to Non-Global Symbols. Apple's developer doc states that this strip style "Strips nonglobal symbols but ...
0
votes
2answers
86 views

QT and OpenCV error: core.hpp not found

i have installed qt 5.0.2 with opencv 2.4.5 with windows 7 32-bit following this tutorial but when i finished i tested it using the example mentioned in the previous link but i had this error error: ...
0
votes
0answers
27 views

linker error when building an applicatio which uses QT

I just compiled qt as explained here: Compiling Qt 4.8.x for Visual Studio 2012 But when I am compiling my code which was written by somebody else, I am getting this rror: Error 74 error ...
2
votes
1answer
21 views

Clang/LD function demangling?

I have two working compilers, clang on Mac, which can target iPhone, and clang on iPhone, which also targets iPhone. Normally both work great, generating binaries and libraries. Libraries produced on ...
0
votes
1answer
30 views

error linking with operator methods

This it's causing me a headache. I have this error linking. g++ -o node.o pathfinding.o prueba.o libmatrix.a -lm -lz -llog4cplus Undefined symbols for architecture x86_64: "operator<(Node ...
2
votes
2answers
42 views

Undefined Reference to a global array while linking the library

I am having a main file which i am building with a shared library libhtml, libhtml is build using another shared library libctpe. I get no errors/warning when i build both libctpe and libhtml but when ...
0
votes
1answer
23 views

Missing SDL library?

So, I recently made a project on ubuntu 32 bit, using SDL libraries. But I want to use RAX etc. registers so I installed 64 bit, but I am getting error about missing SDLs. Error: ...
0
votes
1answer
18 views

Building 32-bit mysql c++ connector from source on a 64-bit machine

I want to build a Win32 version of mysqlcppconn.dll from source so I can use it in my Win32 applications. I am running on 64bit Windows 8 with Visual Studio 2012. I used CMake to create the solution ...
-1
votes
0answers
35 views

C++ linking issue: either error Link1120 or error LNK2005

I am working on a probject which defines a DllMain as theentry. And in this project I need to reference "afxinet.h", which seems to need mfcs100ud.lib to be able to compile When I tried to build I ...

1 2 3 4 5 90