Linker Tools Error LNK2019
unresolved external symbol 'symbol' referenced in function 'function'
The linker could not find a definition for external symbol "symbol" used in function "function". There are many issues that can cause this error. This topic will help you identify the cause and find a solution.
An external symbol is the declared name that you use in source code to refer to something that is defined in another module—for example, an external function or global variable. The linker is responsible for resolving all external symbol references in each module when they are linked into an application or DLL. If the linker can't find a matching definition for an external symbol in any of the linked files, it generates LNK2019. This error can occur if the source code or library file that has the definition of the symbol is not included in the build. It can also occur if the name the linker searches for does not match the name of the symbol in the module that defines it.
Code that uses C++ linkage uses Name Decoration, also known as name-mangling, to encode extra information about a symbol's type and calling convention together with the symbol name. The decorated name is the name the linker searches for to resolve external symbols. Because it becomes part of the symbol's decorated name, if the declaration type of the symbol reference does not match the declaration type of the symbol definition, error LNK2019 can result. The error message shows you both the external symbol and its decorated name to help you find the cause of the error.
Common issues
Here are some common problems that cause LNK2019:
The declaration of the symbol is not spelled the same as the definition of the symbol. Verify the correct spelling was used.
A function is used but the type or number of the parameters do not match the function definition. The function declaration must match the definition. Code that invokes template functions must also have matching template function declarations that include the same template parameters as the definition. Verify that the function call matches the declaration, and that the declaration matches the definition.
A function or variable is declared but not defined. For an example, see Missing Function Body or Variable.
The calling convention is different between the function declaration and the function definition. Calling conventions (__cdecl, __stdcall, __fastcall, or __vectorcall) are encoded as part of the decorated name. Verify that the calling convention is the same.
A symbol is defined in a C file, but declared without using extern "C" in a C++ file. Symbols defined in a file that is compiled as C have different decorated names than symbols declared in a C++ file unless you use an extern "C" modifier. Verify that the declaration matches the compilation linkage for each symbol.
Similarly, if you define a symbol in a C++ file that will be used by a C program, use extern "C" in the definition.
A symbol is defined as static and then later referenced outside the file. In C++, unlike C, global constants have static linkage. To get around this limitation, you can include the const initializations in a header file and include that header in your .cpp files, or you can make the variable non-constant and use a constant reference to access it.
A static member of a class is not defined. A static class member must have a unique definition, or it will violate the one-definition rule. A static class member that cannot be defined inline must be defined in one module by using its fully-qualified name. If it is not defined at all, the linker generates LNK2019.
A build dependency is only defined as a project dependency in the solution. In earlier versions of Visual Studio, this level of dependency was sufficient. However, starting with Visual Studio 2010, Visual Studio requires a project-to-project reference. If your project does not have a project-to-project reference, you may receive this linker error. Add a project-to-project reference to fix it.
You build a console application by using settings for a Windows application. If the error message is unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup, link by using /SUBSYSTEM:CONSOLE instead of /SUBSYSTEM:WINDOWS. For more information about this setting, and for instructions on how to set this property in Visual Studio, see /SUBSYSTEM (Specify Subsystem).
You use different compiler options for function inlining in different modules. Using inlined functions defined in .cpp files and mixing function inlining compiler options in different modules can cause LNK2019. For more information, see Function Inlining Problems.
You use automatic variables outside their scope. Automatic (function scope) variables can only be used in the scope of that function. These variables can't be declared extern and used in other modules. For an example, see Automatic (Function Scope) Variables.
You call instrinsic functions or pass argument types to intrinsic functions that are not supported on your target architecture. For example, if you use an AVX2 intrinsic, but do not specify the /ARCH:AVX2 compiler option, the compiler assumes that the intrinsic is an external function. Instead of generating an inline instruction, the compiler generates a call to an external symbol with the same name as the intrinsic. When the linker tries to find the definition of this missing function, it generates LNK2019. Verify that you only use intrinsics and types supported by your target architecture.
You mix code that uses native wchar_t with code that doesn't. C++ language conformance work that was done in Visual C++ 2005 made wchar_t a native type by default. You must use the /Zc:wchar_t- compiler option to generate code compatible with modules compiled by using earlier versions of Visual C++. If not all modules have been compiled by using the same /Zc:wchar_t settings, type references may not resolve to compatible types. Verify that wchar_t types in all modules are compatible, either by updating the types that are used, or by using consistent /Zc:wchar_t settings when you compile.
For more information about possible causes and solutions for LNK2019, see the Stack Overflow question What is an undefined reference/unresolved external symbol error and how do I fix it?.
Diagnosis tools
It can be difficult to tell why the linker can't find a particular symbol definition. Often the problem is that you have not included the code in your build, or build options have created different decorated names for external symbols. There are several tools and options that can help you diagnose a LNK2019 error.
The /VERBOSE linker option can help you determine which files the linker references. This can help you verify whether the file that contains the definition of the symbol is included in your build.
The /EXPORTS and /SYMBOLS options of the DUMPBIN utility can help you discover which symbols are defined in your .dll and object or library files. Verify that the exported decorated names match the decorated names the linker searches for.
The UNDNAME utility can show you the equivalent undecorated external symbol for a decorated name.
Examples
Here are several examples of code that causes a LNK2019 error, together with information about how to fix the error.
A symbol is declared but not defined
The following sample generates LNK2019 because an external symbol is declared but not defined:
// LNK2019.cpp
// Compile by using: cl /EHsc LNK2019.cpp
// LNK2019 expected
extern char B[100]; // B is not available to the linker
int main() {
B[0] = ' '; // LNK2019
}
Here is another example:
// LNK2019c.cpp
// Compile by using: cl /EHsc LNK2019c.cpp
// LNK2019 expected
extern int i;
extern void g();
void f() {
i++;
g();
}
int main() {}
If i and g are not defined in one of the files in the build, the linker generates LNK2019. You can fix the errors by including the source code file that contains the definitions as part of the compilation. Alternatively, you can pass to the linker .obj files or .lib files that contain the definitions.
A static data member is declared but not defined
LNK2019 can also occur when a static data member is declared but not defined. The following sample generates LNK2019, and shows how to fix it.
// LNK2019b.cpp
// Compile by using: cl /EHsc LNK2019b.cpp
// LNK2019 expected
struct C {
static int s;
};
// Uncomment the following line to fix the error.
// int C::s;
int main() {
C c;
C::s = 1;
}
Declaration parameters do not match definition
Code that invokes template functions must have matching template function declarations. Declarations must include the same template parameters as the definition. The following sample generates LNK2019 on a user-defined operator, and shows how to fix it.
// LNK2019e.cpp
// compile by using: cl /EHsc LNK2019e.cpp
// LNK2019 expected
#include <iostream>
using namespace std;
template<class T> class
Test {
// The operator<< declaration does not match the definition below:
friend ostream& operator<<(ostream&, Test&);
// To fix, replace the line above with the following:
// template<typename T> friend ostream& operator<<(ostream&, Test<T>&);
};
template<typename T>
ostream& operator<<(ostream& os, Test<T>& tt) {
return os;
}
int main() {
Test<int> t;
cout << "Test: " << t << endl; // LNK2019 unresolved external
}
Inconsistent wchar_t type definitions
The following sample creates a DLL that has an export that uses WCHAR, which resolves to wchar_t.
// LNK2019g.cpp
// compile with: cl /EHsc /LD LNK2019g.cpp
#include "windows.h"
// WCHAR resolves to wchar_t
__declspec(dllexport) void func(WCHAR*) {}
The following sample uses the DLL in the previous sample, and generates LNK2019 because the types unsigned short* and WCHAR* are not the same.
// LNK2019h.cpp
// compile by using: cl /EHsc LNK2019h LNK2019g.lib
// LNK2019 expected
__declspec(dllimport) void func(unsigned short*);
int main() {
func(0);
}
To resolve this error, change unsigned short to wchar_t or WCHAR, or compile LNK2019g.cpp by using /Zc:wchar_t-.