The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
39 views

error LNK2001: unresolved external symbol despite inclusion of header file

I have a problem I can't seem to resolve. I have a file JobDispatcher.cpp which includes a file #include "CalculateNormalsJob.h" containing the declaration of a class with the same name. class ...
1
vote
3answers
40 views

Overloaded arithmetic operators on a template causing an unresolved external error

Let's say I have this class: in Vector4.h: #pragma once template<typename T> class Vector4 { public: T X; T Y; T Z; T W; Vector4(); Vector4(T X, T Y, T Z, T W); ~Vector4(); friend ...
0
votes
0answers
45 views

C++ unresolved external using templates [duplicate]

I have this in my Config.h: class Configuration { public: void AddKey(char* keyLabel, char* keyValue, bool keyIsEditable); template<typename T> T GetValue(char* ...
0
votes
0answers
39 views

C++ unresolved external [duplicate]

I have a class to manage configuration keys/values from a file, and I did it like this: class ConfigKey { public: bool IsEditable; string KeyLabel; string KeyValue; }; ...
0
votes
1answer
26 views

Cant get Flandmarks to work, C++, Error LNK2019, Unresolved external symbol

I want to test Flandmarks for face detection http://cmp.felk.cvut.cz/~uricamic/flandmark/ But I cant get it to work. I've been working on this for probably 10 hours. I asked for help on opencv.org ...
0
votes
0answers
9 views

Unresolved external symbol _JVM_GetClassMethodsCount

I was trying to build a patched openjdk 1.8 under Windows X64 . And blocked by an "unresolved external symbol "error. The "unresolved symbols" are expected in "jvm.lib" I use "dumpbin" checked. All ...
0
votes
1answer
130 views

error LNK2019: unresolved external symbol cvSmooth referenced in function “void __cdecl example2_4(struct _IplImage *)”

I hope that anyone familiar with openCV and image processing will help me soon. I'm absolutely new to openCV and VC++ and this is the third time this week, I've encountered the error LNK2019. I know ...
0
votes
1answer
28 views

Unresolved external symbol for variables in namespace

I have problem with LNK2001: unresolved external symbol error. It shows only when I have all my classes in my namespace and refers to global variables which I use multiple files. Here is example code ...
1
vote
0answers
83 views

Linker errors when try to compile app with 7z.dll on Qt5

I try to compile simple application on Qt5 (Windows 7) using 7z.dll. I use code samples from 7zip Client7z example, but i get next errors: mainwindow.obj : error LNK2019: unresolved external symbol ...
0
votes
0answers
12 views

log4cxx: unresolved externals

I am trying to use log4cxx library in my VS2008 project. However, it doesn't link properly. I got a bunch of unresolved externals: : error LNK2001: unresolved external symbol "__declspec(dllimport) ...
0
votes
1answer
28 views

Multi-demensional matrix initialization to ones using opencv gives a linking error

I have a strange error using opencv under visual studio 11. When i do this: int sz[]={3,3,3}; T=Mat(3,sz,CV_32F); or this (2D matrix initialized to ones): T=Mat::ones(3,3,CV_32F); everything ...
0
votes
2answers
53 views

Removed the C runtime library, and i am receiving some unresolved externals

hey guys i am working on an application and i removed the CRT to save alot of space in the executable and making it as small as possible :) the thing is that when i removed the CRT i also received ...
1
vote
0answers
52 views

Linking C++CLI projects result in unresolved tokens and externals

I'm having difficulties linking C++ CLI projects. In one of my CLR projects I have a native baseclass (containing managed methods and members) which I'm trying to inherit to a subclass in another ...
0
votes
1answer
67 views

CUDA external class linkage and unresolved extern function in ptxas file

I'm working with CUDA and I have created an int2_ class to deal with complex integer numbers. Class declarations in the ComplexTypes.h file as follows: namespace LibraryNameSpace { class int2_ ...
0
votes
1answer
94 views

error LNK2019: unresolved external symbol “” referenced in function

Im currently getting the following error when I compile my code: error LNK2019: unresolved external symbol "public: void __thiscall Agent::printSelf(void)" (?printSelf@Agent@@QAEXXZ) referenced in ...
0
votes
1answer
73 views

Unresolved external symbol LNK2019

First of all, I know this question is all over this site but I have looked at almost all of them and can't seem to find out what is wrong. This is in VS 2012. Thanks. //Socket.h #pragma once ...
0
votes
4answers
56 views

C++ Unresolved External - Template

I am getting an unresolved external compile error when compiling my template classes. I have separated the code into .h and .cpp files. I read some posts and now I understand that this will not work ...
1
vote
1answer
48 views

Unresolved External Symbol (again)

I have no idea why the following gives me: *"error LNK2001: unresolved external symbol 'struct Win32Vars_t win32' (?win32@@3UWin32Vars_t@@A)"* If I start a new project and create this header file it ...
0
votes
0answers
85 views

Linker errors when I transfer my files

So I have found an odd error with my project. Whenever I transfer my files from one location to another, it always generates linker errors when I run it from the new location. The "fix" I've found is ...
0
votes
0answers
34 views

Unresolved External Symbol Linker error [duplicate]

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
106 views

Fixing unresolved external symbol error in C++

When I try to build my C++ application, I get a lot of unresolved external errors: 1>game.obj : error LNK2019: unresolved external symbol "public: __thiscall Player::Player(void)" ...
0
votes
0answers
89 views

C++ mySQL connector multiple errors (Windows)

I've been trying to get MySQL working with Visual Studio 2012 and Windows (x86) in general. I don't have problems on Linux, however, I get a lot errors on Windows. This is my code (I've copied from ...
0
votes
0answers
15 views

unresolved external symbol __imp__imsl_f_lin_sol_gen referenced in function _wmain

Hi everybody, I have some issues with the use of the IMSL Library. The compiler can find the libary but I always get the same errors: (kokok is the name of the file) 1>Linking... 1>kokok.obj : error ...
0
votes
1answer
69 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 ...
0
votes
0answers
58 views

Unresolved external between several projects in VS2010 C++

I have two C++ projects which each form a library to be referenced by a third project all as part of a Visual Studio solution. The two libraries were written by someone else who also provided his own ...
1
vote
1answer
56 views

Visual Studio 2012 produces unresolved externals for xmm

Ruby 1.9.1 fails to build with Visual Studio 2012 (update1 and 2) due to unresolved externals, when building with the default -arch:SSE compiler flag. cl -nologo -LD main.obj dmyext.obj ...
0
votes
1answer
46 views

Why do I get an “Unresolved Externals” when calling a static attribute? Visual C++

although there are a lot of answers to this topic, I still have a problem. I want, like everybody, to implement a Singleton pattern. I tried with this: class Factory { private: Factory(void); ...
0
votes
1answer
26 views

Unresolved Externals when using polymorphism

Hi i'm getting the following errors: Error 9 error LNK1120: 2 unresolved externals Error 8 error LNK2019: unresolved external symbol "public: virtual __thiscall physics::~physics(void)" ...
0
votes
0answers
22 views

unresolved external when using template function [duplicate]

I know this question was asked many times but I tried using the suggested work arounds like using inline and declaring the type in a .cpp file but no succes. I am trying to compile the following code ...
0
votes
0answers
43 views

irrlicht setting up, error 1>main.obj : error LNK2001: symbole externe non résolu __imp__createDevice

When I create a new project in VC++ 2010 express and try to run the Irrlicht example, I get the following: 1>main.obj : error LNK2001: unresolved external symbol __imp__createDevice I added the ...
1
vote
0answers
65 views

LNK2019 & LNK1120 unresolved externals

#include <iostream> #include <fstream> #include <string> #include <vector> #include <sstream> #include "FilmScore.h" #include "HashedDictionary.h" using namespace std; ...
2
votes
2answers
71 views

How do I rectify inconsistent Unresolved External errors? [duplicate]

I'm trying to wrap my head around C++ developement using the SFML library. I'm following a tutorial (http://www.gamefromscratch.com/page/Game-From-Scratch-CPP-Edition-Part-7.aspx), and using visual ...
1
vote
1answer
170 views

C++/Qt unresolved external when calling constructor

[Solved]This problem somehow resolved itself on about the 5-6 clean and rebuild, no code was changed I have a class with a default constructor, and a constructor that takes 8 arguments. from another ...
1
vote
3answers
118 views

unresolved external symbol, C++

I'm getting an error when trying to build a project regarding unresolved external symbols, however I can't find out where my issue lies, anyone got any ideas? thanks Tball.cpp #include "Tball.h" ...
0
votes
0answers
86 views

Include Curl in MFC project

I'm fairly new with curl. I need to use curl in c++ with the ssl support. I compiled OpenSSL with nmake and then, and I compiled libcurl as a static library with SLL SUPPORT via the VS10 project. The ...
0
votes
1answer
174 views

VS2010: fatal error LNK1120: 1 unresolved externals . Working with templates

Have a simple assignment with classes and templates for class, have searched on here and no solutions seem to fix the issue. When I try to compile, this comes up: 1>MSVCRTD.lib(crtexe.obj) : ...
0
votes
1answer
267 views

Compiler Error 2019 Unresolved External Symbol [duplicate]

I am trying to compile a program to make sure all the code is working. I am getting an Error 2019 Unresolved External with the following messages: 1>------ Build started: Project: Week 2 Dating ...
0
votes
1answer
108 views

unresolved external symbol C++ Embedded

I have been stuck a few days now on this issue, and I cannot find an answer to my problem even though google is fuul of replies it seems like this is quite an abstract problematic. Here is my code in ...
0
votes
0answers
147 views

QT5 linker issues in inherited project

I'm getting 279 "unresolved external symbol" errors when trying to compile a QT project with MSVS 2010. It's a student project and I'm new to MSVS and QT, having only done small C++ projects before. ...
2
votes
1answer
408 views

Building PoDoFo on Windows - unresolved externals

I'm trying to build PoDoFo but I have few linker errors that are related to OpenSSL(I think). I tried to build it(OpenSSL) but it was too complicated, so I downloaded Win64 OpenSSL v1.0.1e from ...
0
votes
1answer
181 views

unresolved externals SAP NetWeaver RFC SDK 7.1 client example Visual Studio 2010

I'm trying to compile the companyClient.c in a visual studio 2010 project, but even if i link properly to the lib sapnwrfc.lib i still get several unresolved externals: Error 1 error LNK2019: ...
2
votes
0answers
3k views

How to Fix Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string?

How to fix a Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string? I've been compiling a solution containing one exe and several static ...
1
vote
1answer
106 views

OpenGL and VS2010 unresolved external

I want to use GLUT to simplify my code and work. I'm using windows 7 (64 bit) and Visual Studio 2010. I did everything like in this tutorial and still can't compile my code... I get these errors: ...
1
vote
2answers
95 views

Unresolved external symbol for friend function

First the layout of my code: A.h class STORAGE_CLASS_DECLARATOR A : public PureVirtual { some member functions, all working; void someFunctionCallingOperator<<(); friend ...
2
votes
2answers
103 views

unresolved external link2019 confusion

I'm trying to resolve an unresolved external (link2019 error). There are many posts on StackOverflow about this issue, but either I am not understanding the error or I am blind to it. The error is ...
0
votes
1answer
68 views

Linker can't find function definitions, LNK2001 unresolved external symbol

Here is my simple setup: (i've hidden lots of unneeded information) //AutoFocusTest.h #include "camAVTEx.h" class CAutoFocusTestApp : public CWinApp { protected: camera_t* mCamera; public: ...
0
votes
1answer
76 views

Linker 2001 Error and undefined identifier for member variable

Almost done this program, and after moving to a public computer, and changing some code, I noticed that I'm receiving a linker error, and I also decided to ask about another error (and why it's ...
0
votes
1answer
93 views

Expat unresolved external symbol

I've got troubles finding why i've got unresolved external symbol when linking a static library (XMP with expat included) in a shared lib (it's a firefox xpcom component). I'm under windows using the ...
0
votes
0answers
24 views

Im reciving a Error 2 error LNK2019: unresolved external symbol "public: __thiscall … that I cant seem to debug [duplicate]

I have searched through and found many examples and input on solving this problem but for some reason I cannot seem to locate what I'm doing wrong... My assignment is to create a doubly linked list ...
0
votes
0answers
167 views

visual c++ allways fatal error LNK1120: 1 unresolved externals

i have visual studio 2012 and i added a new Class from the Menu. But allways comes "fatal error LNK1120: 1 unresolved externals". I have the header file included. I has making an object from the new ...

1 2 3 4