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
7 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
8 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
6 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: ...
0
votes
0answers
9 views

XE3 Metropolis Grid app error with SQLITE components

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
12 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
26 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
0answers
15 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
18 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
35 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
22 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
36 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
45 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
20 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
31 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
19 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
14 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
25 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
23 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
29 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
20 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
18 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
14 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
73 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
39 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
21 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
15 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
34 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 ...
0
votes
1answer
23 views

How to add gdi32.lib from command line

I have found an example where gdi32.lib should be linked in some way, but I don't know how to do this from GCC command line. All the examples I've found suggest to do this somewhere in project ...
1
vote
0answers
13 views

In which cases is the C compiler allowed to ignore the calling conventions?

For obvious reasons, a C compiler has to compile all functions that are externally visible to other shared libraries so that they conform to the platform's calling conventions and other ABI ...
2
votes
1answer
97 views

How to run a ghc compiled binary on other machines?

This post is really informative on what I'm trying to achieve. I produced a simple HelloUnix binary. $ echo 'main = putStrLn "Hello Unix"' > HelloUnix.hs $ ghc -static --make HelloUnix.hs Which ...
0
votes
1answer
24 views

Static function linker error

I have followed these instruction: is it possible to define the static member function of a class in .cpp file instead of its header file? ...
2
votes
1answer
68 views

How can I tell a CPAN installation of PDL to use my FFTW path?

I need to install the Perl PDL library via CPAN as the non-root user. CPAN for non-root works thanks to this SO question: How can I use CPAN as a non-root user? Now, PDL depends on the FFTW library. ...
0
votes
2answers
26 views

cannot find -lcuda when linking with g++

I'm trying to link these object files with the command: g++ NT_FFT_Decomp.o T_FFT_Decomp.o SNT_FFT_Comp.o ST_FFT_Comp.o VNT_FFT_Comp.o VT_FFT_Comp.o CUDA_FFT_Comp.o Globals.o main.o \ ...
1
vote
1answer
38 views

unresolved external symbol _CreateFastString referenced in function _wmain

I am creating a DLL and providing the entry point to the FastString class using CreateFastString function: FastString.h: #define EXPORT __declspec(dllexport) #define IMPORT __declspec(dllimport) ...
0
votes
4answers
52 views

multiple function declarations in different compilation units

zero.c: int sq(); one.c: int sq(int i) { return i*i; } two.c: int sq(int i, int j); main.c: int main() { printf("%d\n",sq()); printf("%d\n",sq(2)); ...
0
votes
1answer
56 views

Unresolved external symbol, cannot figure out why

I have two files that are causing me a lot of grief: camAVTEx.h and camAVTEx.cpp. Here is the general setup for the two files: //.h//////////////////////////////////////////////// /* #includes to ...
1
vote
1answer
188 views

What is the correct Xcode setting for Position Independent Executables

Just recently started getting a post appstore submission email with the following advice. Please ensure that your build settings are configured to create PIE executables. However the setting in ...
2
votes
1answer
33 views

Linking failure with a MonoTouch native library binding

I am creating native library binding for the Wikitude SDK. The MonoTouch app fails linking: Undefined symbols for architecture armv7: "std::__1::basic_string, std::__1::allocator ...
1
vote
1answer
22 views

MinGW and @N dll functions linking

I have the '.h' file with content like this: #ifndef MY_IMPORT #define MY_IMPORT __declspec(dllimport) /* !!! */ #endif #ifndef MY_EXPORT #define MY_EXPORT __declspec(dllexport) #endif ...
0
votes
0answers
25 views

nvcc and X11 libraries - Undefined symbols for architecture i386

So I'm developing an application that uses both CUDA and X11 on Mac OS X mountain lion with nsight. In nsight I set up include paths for my project Properties -> Build -> Settings -> NVCC ...
0
votes
0answers
35 views

linux gcc linked executable missing static definition of stat64

A linux stat64 call is supposed to end up calling xstat64 with a static version of stat64 generated that passes a version along with the call. We are seeing a condition where a C linked (gcc) version ...

1 2 3 4 5 90