Tagged Questions
The lnk2001 tag has no wiki summary.
2
votes
2answers
973 views
Why would a .lib compiled in VS2003 fail to link with code compiled with VS2008?
We just had an interesting experience in trying to link a set of code compiled using Visual Studio Express 2008 with a .lib compiled with Visual Studio 2003. All in C++. To be precise, it was the ...
1
vote
2answers
142 views
static library: static const array - LNK2001: unresolved external symbol in app using library
I've declared the static const array in the header and then implemented it in the cpp file but I cannot figure out what is going on.
Subsys.h:
#ifndef _SUBSYS_H
#define _SUBSYS_H
namespace Engines
...
1
vote
1answer
451 views
C++/CLI DLL project stops linking after conversion from VS2008 to VS2010
I converted a perfectly working Managed C++ DLL project that uses Unmanaged C++ LIBs from VS2008 to VS2010. Beforehand I separately rebuilt the LIBs with VS2010 (they are part of another project that ...
1
vote
2answers
255 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 ...
0
votes
1answer
24 views
MSVC Linker Error LNK2001 unresolved external for template method defined in cpp file
I'm somewhat new at C++ (I normally work in C#, but right now I'm working on a somewhat cross-platform project), so I'm not really used to all of its concepts and exactly how compiling/linking works. ...
0
votes
1answer
59 views
VS2010 error LNK2001: unresolved external in MFC static application
I get this error in Visual Studio 2010 SP1, when I try to link a static MFC application with the libmp3lame.lib C++ library.
>nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ...
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
1answer
92 views
How to resolve LNK2001
I have a set of code written in VS 6. I am trying to write a CLI wrapper for that in VS 2008. I included one of the VS6 header files in the CLI code and compiled. While compiling I am getting ...
0
votes
1answer
66 views
How to pass variables to function exported by a DLL, I get error LNK2001
I have to pass a HWND variable from the main program to a function exported by a DLL. Variable is called mainHwnd and DLL is defined in this way:
mydll.h
#ifdef MYDLL_EXPORTS
#define MYDLL_API ...
0
votes
0answers
52 views
ZipArchive Upgrade Compilation Errors
I’m using ZipArchive in a C++ project, but I’m currently using 3.0.0 and want to upgrade to using 4.1.0
I have the reference to the Library, which was compiled with the same settings as the main ...
0
votes
0answers
108 views
Linker Error LNK1104 on rebuild and LNK2001 on compile
I am getting a weird linker error in VC2008 and I can't really find the solution to it. On compile, I get...
Linking...
wxGRlib.lib(GrPlotAxisRoutines.obj) : error LNK2019: unresolved external ...
0
votes
1answer
98 views
LNK 2001 error with struct
I have a h- and a cpp-file with some calculations used in many of my projects.
Now I tried to put them in a separate dll, so the files should not be included in every project.
When linking I get a ...
0
votes
1answer
165 views
LNK2001: What have I forgotton to set?
Following on from my previous question regarding debugging of native code, I decided to create a simple test from a console app as I wasn't getting anywhere with debugging the service directly.
So I ...
0
votes
2answers
182 views
LNK2001 error in code
I am getting LNK2001 error. The code has been included below. Can someone please help me out?
Error 3 error LNK2001: unresolved external symbol "private: static class std::vector<struct ...
0
votes
2answers
622 views
Implementing IUnknown, unresolved external symbol
I am trying to create a class that implements the IUnknown interface. I have the following code in the header file.
#pragma once
#include "stdafx.h"
#include "Unknwn.h"
class Vmr9Presenter : ...
-1
votes
1answer
79 views
Linking С++ - BDB - LNK2001
BDB is compiled on the same PC, under same VS.
#include <db_cxx.h>
int main(){
Db b(NULL, 0);
return 0;
}
1>main.obj : error LNK2001: unresolved external symbol ""public: virtual ...