Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
3k views

Linking error LNK2019 in MSVC, unresolved symbols with __imp__ prefix, but should be from static lib

I'm running into linking problems in MSVC for a project that I wrote for g++. Here's the problem: I build libssh as a static library as part of my application, adding the target in cmake with ...
3
votes
4answers
4k views

Link error after update from VS2008 to VS2010

Today I met an link problem after updating the VS version from 2008 to 2010, the error is something like this: error LNK2019: unresolved external symbol "public: static void __cdecl ...
3
votes
2answers
987 views

error LNK2019: unresolved external symbol

Ok, so I'm having a problem trying figure out the problem in my code. I have a lot of code so I'm only going to post the relevant parts that are messing up when I compile. I have the following ...
3
votes
3answers
2k views

C++ LNK2019 and LNK1120 errors

I'm trying to do another exercise from Deitel's book. The program calculates the monthly interest and prints the new balances for each of the savers. As the exercise is part of the chapter related to ...
2
votes
3answers
139 views

Unresolved external symbol: @12 vs @8 at the end of symbol name

I don't have any significant experience with C++ but recently had to be involved into the project with C++ part (apache modules, actually). Right now I am just trying to build some existing very much ...
2
votes
2answers
972 views

C++ LNK2019 error with constructors and destructors in derived classes

I have two classes, one inherited from the other. When I compile, I get the following errors: Entity.obj : error LNK2019: unresolved external symbol "public: __thiscall ...
1
vote
1answer
32 views

link error lnk2019

so im getting this error Error 1 error LNK2019: unresolved external symbol "public: enum LL_ERR __thiscall linkedList<int>::addData(int)" (?addData@?$linkedList@H@@QAE?AW4LL_ERR@@H@Z) ...
1
vote
1answer
49 views

Errors LNK2019 and LNK2028 in VC++ Express 2008

I'm trying to build a solution with 2 projects and get these error messages: ColliderTest.obj : error LNK2028: undefined token (0A000080) "public: __thiscall Rect::Rect(int)" (??0Rect@@$$FQAE@XZ) ...
1
vote
1answer
154 views

Visual C++ LNK2019 error

Using Microsoft Visual C++ I am trying to compile the file "test.cc" which is part of a small package available for free download at http://sourceforge.net/projects/clippoly/files/ The file test.cc ...
1
vote
3answers
61 views

“Cleared” Are Macros exported to a .lib file?

I have some macros like, #define dosomething(x) something(x) and it is compiled into a dll. Will I have that macro in that lib created by the build?
1
vote
2answers
256 views

LNK2019 / 2001: unresolved external symbol

I've seen similar questions online that are problems with people forgetting to include certain things, etc. However I'm getting this error after checking out our code from subversion--others have ...
1
vote
2answers
729 views

wstring -> LPCWSTR in ShellExecute give me error LNK2028 & LNK2019

Hello I'm programming in Visual C++ 2010 (spanish) with UNICODE and /clr. I have a header file called "fileFuncs.h": #include <iostream> #include <fstream> #include <string> ...
1
vote
3answers
257 views

What is the meaning of error LNK2019

Can Somebody tell me what does the following error implies? Error 2 error LNK2019: unresolved external symbol "public: class TLst & __thiscall TLst::operator=(class TLst const ...
1
vote
1answer
171 views

LNK2019 error when compiling code

I have some sample code that I was editing in Visual Studio 2010 to encrypt and decrypt using DES. For some reason, when I compile the code i keep getting these two LNK2019 errors that are referring ...
1
vote
1answer
398 views

error LNK2019 - Virtual destructor in abstract class [closed]

Possible Duplicate: Pure virtual destructor in C++ I have two classes: the abstract "Game" class and the derived "TestGame" class. All of the functions in TestGame are implemented ...
1
vote
3answers
842 views

Trouble with building Cuda programme in VS2008: LNK2019

I am having some trouble with building my programme. I am working on Windows 7 professional 32-bit with Visual Studio 2008. I have the Cuda SDK and my project is set up with all links to cudart.lib ...
1
vote
2answers
187 views

lnk2019 error in very simple c++ program

I have tried removing various parts and building, but nothing makes the lnk2019 error go away, or even produces any normal errors. Everything is in the one file at the moment (it won't be later when ...
1
vote
0answers
484 views

MSVC: inspecting static libraries (fixing unresolved external symbols)

I wanted to ask what tools and techniques you use to fix linker errors in MSVC. My problem is, that I link an executable against a self built static lib and I get a lot of unresolved external symbols ...
1
vote
3answers
458 views

link time error in vc++ when using confuse library

I am trying to use confuse library on windows. I get a link time error when confuse is compiled in vc++. how to resolve it. Please note that libConfuse is a configuration file parser library and ...
1
vote
5answers
4k views

error LNK2001 and error LNK2019 (C++) — Requesting some learning about these errors

Alright, so I just finished my last compiler error (so I thought) and these errors came up: 1>GameEngine.obj : error LNK2001: unresolved external symbol "public: static double WeaponsDB::PI" ...
0
votes
3answers
38 views

visual studio solution with multiple projects doesnt compile

I first made a program in eclipse (mingw compiler). Now i am translating the code to Visual Studio 2008. It is one solution with multiple projects. 2 of the projects are for running a (console) ...
0
votes
0answers
17 views

gcc to VC++ 2010 got LNK 2019 error

I got the SPUC 2.3.1 software and am trying to compile it on my VC++ 2010 IDE. I've resolved the compile error with std namespace by using SPUC::. But now I am stuck at linker. It gave me a lot of ...
0
votes
2answers
58 views

How to get rid of this error: “MSVCRTD.lib(crtexe.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup”

I'm Helping a friend with her C++, but to be honest we need a big bit of help. Why we always get this error: "MSVCRTD.lib(crtexe.obj) : error LNK2019: unresolved external symbol main referenced in ...
0
votes
0answers
86 views

When using fstream in a library I get linker errors in the executable

When I add #include <fstream> and try to use std::ifstream (i.e. std::ifstream ifile(pDest)) in my library I get the following linker errors when compiling a project whih uses the ...
0
votes
0answers
82 views

VS10 always links to SUBSYSTEM:WINDOWS; CMake+SDL+GLEW

I'm just trying to set up a simple project that shall be able to compile on every platform, that is supported by CMake. I started my project on a Win7-system and wrote a little main.cpp that includes ...
0
votes
3answers
65 views

Getting linker errors

I wrote this program using the guidelines set by my instructor. Once I finally fixed all my typos and syntax errors I tried to compile the program and revived 5 linker errors. As far as I can tell ...
0
votes
3answers
43 views

LNK2019 When trying to inherit a class

So, I'm trying to inherit a class from another. I have the base class Entity and I have a Hero class that needs to be inherited from it. Like usual, I do this like this: #include "Entity.h" class ...
0
votes
1answer
111 views

MS VC linker (link.exe): Why no warning for 32/64 bit CPU architecture mismatch?

(Update: As per Hans' suggestion, here's a suggestion to improve link.exe's behaviour, and you can vote for it if you have an account over there.) Okay, I'm a fool. In January I installed Oracle on ...
0
votes
1answer
990 views

Error LNK2019: unresolved external symbol “class std::basic_string”

Environment: Windows XP. Visual Studios 2010. Language - C++. I have run into the following link error & have run out of ideas how to fix this problem. I have a project (CnD Device) which links ...
0
votes
1answer
106 views

C++ Linker Error LNK2019

I'm still kind of new to C++ and don't know why I'm getting these linker errors while trying trying to call these functions in another class. The errors are: error LNK2019: unresolved external ...
0
votes
2answers
143 views

How do I eliminate the linker errors in my program?

Well, I'm writing this code for my class and I'm getting linker errors LNK2019 and LNK1120 using Visual Studio. I'm not all too sure why it's doing what it's doing, but I digress. Header file: ...
0
votes
0answers
47 views

error LNK2019: unresolved external symbol

Before somone links another question with the same error from this site... I have looked through heaps of them... I still can't solve my problem I keep getting: 1>EasySound.obj : error LNK2019: ...
0
votes
2answers
824 views

error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup, but this time it's NOT a Windows/Console problem!

So, the infamous error is back. The project is complaining that it can't find the main() method (that's what the error means, right). However I do have a main, and my project is a Console project, as ...
0
votes
1answer
247 views

C++ error LNK2019 and error LNK1120

Hello i am making a tic tac toe game in console. What's wrong with my code? I Got linker settings set as console. code: // Tic tac Toe // Plays a tic tac toe game against a npc #include ...
0
votes
3answers
51 views

LNK2019 Using untemplated classes

I'm getting linker errors when using Classes that reference other classes in them. 1>main.obj : error LNK2019: unresolved external symbol "public: __thiscall MovePattern::~MovePattern(void)" ...
0
votes
1answer
362 views

VS2010 compiling errors for libfreenect (OpenKinect library)

I'm installing libfreenect (OpenKinect) to interface the Kinect with Arduino for a tangible media project on Windows 7. I'm stuck at the compiling stage in VS2010 with 61 errors of this type. ...
0
votes
0answers
69 views

ctypes python lnk2019 error

I am using linkgrammar to parse some sentences. Linkgrammar is in C. I am able to run this in Visual studio 2010. Now I want to call this code in Python. I looked into ctypes and am able to call ...
0
votes
1answer
561 views

LNK2019 error when building solution

I am trying to compile a sample code using OpenHaptics libraries in Visual Syudio 2010. I linked the multi-threaded C-runtime, and the libraries through Project Properties->Linker->Input. And included ...
0
votes
0answers
80 views

Why arent my webcam working for android application?

public class SurfaceViewUI extends Activity { private Paint paint= new Paint(Paint.ANTI_ALIAS_FLAG); private float initX, initY, radius; private boolean drawing = false; public class ...
0
votes
1answer
262 views

LNK2019 error while creating an object in another solution c++

I'm trying to create objects by using another c++ solution's files. When I create a MyClass1 object program gives error of: 1>main.obj : error LNK2019: unresolved external symbol "public: ...
0
votes
1answer
1k views

OpenCV unresolved external errors with objdetect.hpp functions (C++)

I'm trying to compile a simple face detection program in C++ in VS2010 and have come across two LNK 2019 errors: Error 2 error LNK2019: unresolved external symbol _cvReleaseHaarClassifierCascade ...
0
votes
2answers
148 views

Linker Error LNK2019 traced back to an __stdcall i think i got the right lib - what can i do to resolve this?

I try to port a LabCVI Projekt to MSVS 2010 C++ Express. There is a line of code wich reads like this: if (InitCVIRTE == 0) return 0; A Linker Error occurs: LNK2019 "_InitCVIRTEEx@12" - all ...
0
votes
1answer
296 views

Resolving 'LNK2019 unresolved external symbol' on DirectDrawCreate

I've been attempting to get DirectDraw to function on a CE5.0 framework for the last week and I'm running into some very odd issues. ddrval = DirectDrawCreate(NULL, &lpDD, NULL); When I have ...
0
votes
2answers
140 views

LNK2019 and LNK1120 with functions in an external file

I have taken out some functions from a source file into another since I want to use them also in other files. The current structure is as follows utils/extFuncs.h #ifndef _extFuncs_h #define ...
0
votes
1answer
32 views

compiling problem

when is calling the function i'm getting error: " H:\workspace\HW5\HW5\Manager.obj H:\workspace\HW5\HW5\Manager.obj> Error 22 error LNK2019: unresolved external symbol "public: void ...
0
votes
1answer
177 views

C++ LNK2019 ( between project classes )

I have an very strange error : When i want to use the SocialServer::Client class from my SocialServer::Server class the linker threw me 2 LNK2019 errors : Error 1 error LNK2019: unresolved external ...
0
votes
1answer
449 views

LNK 2028 - 2019 / Managed and Unmanaged C++ ? (VS 2008)

I am trying to link an open-source library to one of my project. The library is unmanaged (named Tetgen) and my project is in managed C++. I create a .lib or a .dll, that doesn't change anything. My ...
0
votes
1answer
304 views

MSVC 2008 - Unresolved External errors with LIB but only with DLL, not with EXE project

I have a DLL that I am trying to link with a libjpeg LIB using MSVC 2008 that is generating Unresolved External Symbol errors for the libjpeg functions. I also have a test project that links with the ...
0
votes
1answer
623 views

Visual C++ Linking LNK2019 problem with Precompile Header

I had a very weird problem with precompile header. The linker generates LNK2019: unresolved external symbol error when I implement method in .cpp file. However, the program could be compiled if I ...
0
votes
3answers
2k views

Linker errors in Visual C++ LNK2005, LNK2019 - not sure why

I'm trying to build code from the nVidia 9.5 SDK but I get the following linker errors: >1>NV_D3DCommonDX9U.lib(NV_StringFuncs.obj) : error LNK2005: "class std::basic_istream<char,struct ...

1 2