Thread: error LNK2001: unresolved external symbol

  1. #1
    Unregistered
    Guest

    error LNK2001: unresolved external symbol

    Anyone using MS Visual C++ know what this error means? I have three of them:

    _RaiseException
    _HandlerExists
    _ErrorException

  2. #2
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    > I have three of them:
    And, exactly where in the code that you posted did they occur?
    It sounds like a "communication" problem of some sort, but lets see the code.
    The world is waiting. I must leave you now.

  3. #3
    TransparentMember correlcj's Avatar
    Join Date
    Jun 2002
    Posts
    378

    I finally know this one...

    Do you have MSDN visual library 6.0 w/ your software. YES, right?
    anyway, that errorcode means that you forgot to include additional source code. maybe your functional prototype is missing its definition or you still need to add more source code to get you program to run correctly.
    I hope this helps a little bit.
    A unknown stugglin c/c++ leanee too.
    good luck friend

  4. #4
    Registered User
    Join Date
    Jul 2002
    Posts
    273
    unresolved externals means you are missing those compiled things. So if those names are not things you are familiar with in your own code, they are likely lib files that you have not included. Head up to project settings and stick the appropriate lib file in there

  5. #5
    TransparentMember correlcj's Avatar
    Join Date
    Jun 2002
    Posts
    378

    wheres oviedo fl

    How far is evides fl from tampa
    "Be formless, shapeless, like water... You put water into a cup, it becomes the cup, you put water into a bottle, it becomes the bottle, you put it in a teapot, it becomes the teapot... Now water can flow, or it can crash, be water my friend."
    -Bruce Lee

  6. #6
    Registered User
    Join Date
    Jul 2002
    Posts
    273
    RaiseException
    That seems to say that at least RaiseException lives in Kernel32.lib? interesting

  7. #7
    Registered User
    Join Date
    Jul 2002
    Posts
    273

    Re: wheres oviedo fl

    Originally posted by correlcj
    How far is evides fl from tampa
    Oviedo is just north of Orlando, so a couple hours.

  8. #8
    TransparentMember correlcj's Avatar
    Join Date
    Jun 2002
    Posts
    378

    Howdy, next door neighbor

    Thats cool!
    "Be formless, shapeless, like water... You put water into a cup, it becomes the cup, you put water into a bottle, it becomes the bottle, you put it in a teapot, it becomes the teapot... Now water can flow, or it can crash, be water my friend."
    -Bruce Lee

  9. #9
    Unregistered
    Guest
    the thing is, my program complies fine. No errors, no warnings. The errors I listed above only occur when I try to run the command. I noticed these errors came up when i tried to access the strlib.h library. I was trying to use CharToString and StringToInteger to get a character to an integer. Do you guys know an easy way to do this. Maybe if I change my approach to this problem, I can get around the error. I want to take an x-byte long string of characters and turn them into integers.

  10. #10
    Registered User
    Join Date
    Jul 2002
    Posts
    273
    did you add kernel32.lib to the project?

    Project/Settings.../Link tab

    Category = General
    Object/library modules should have kernel32.lib as one of the entries

  11. #11
    Unregistered
    Guest

    Post

    yessir, it's already there.

  12. #12
    Registered User
    Join Date
    Jul 2002
    Posts
    273
    dunno then.

  13. #13
    TransparentMember correlcj's Avatar
    Join Date
    Jun 2002
    Posts
    378

    Thumbs up I hope this helps you out!?!?

    I hope this helps you! If not please see if you just missed out an extra step even though its complining just fine. You probably need to add an extra step somewhere.


    Linker Tools Error LNK2001
    unresolved external symbol "symbol"

    Code will generate this error message if it references something (like a function, variable, or label) that the linker can’t find in all the libraries and object files it searches. In general, there are two reasons this error occurs: what the code asks for doesn’t exist (the symbol is spelled incorrectly or uses the wrong case, for example), or the code asks for the wrong thing (you are using mixed versions of the libraries?some from one version of the product, others from another version).

    Numerous kinds of coding and build errors can cause LNK2001. Several specific causes are listed below, and some have links to more detailed explanations.

    Coding Problems

    Mismatched case in your code or module-definition (.DEF) file can cause LNK2001. For example, if you named a variable “var1” in one C++ source file and tried to access it as “VAR1” in another, you would receive this error. The solution is to exactly match the case of the symbol in all references.


    A project that uses function inlining yet defines the functions in a .CPP file rather than in the header file can cause LNK2001.


    If you are using C++, make sure to use extern “C” when calling a C function from a C++ program. By using extern “C” you force the use of the C naming convention. Be aware of compiler switches like /Tp or /Tc that force a file to be compiled as a C (/Tc) or C++ (/Tp) file no matter what the filename extension, or you may get different function names than you expect.


    Attempting to reference functions or data that don't have external linkage causes LNK2001. In C++, inline functions and const data have internal linkage unless explicitly specified as extern.


    A missing function body or variable will cause LNK2001. Having just a function prototype or extern declaration will allow the compiler to continue without error, but the linker will not be able to resolve your call to an address or reference to a variable because there is no function code or variable space reserved.


    Name decoration incorporates the parameters of a function into the final decorated function name. Calling a function with parameter types that do not match those in the function declaration may cause LNK2001.


    Incorrectly included prototypes will cause the compiler to expect a function body that is not provided. If you have both a class and non-class implementation of a function F, beware of C++ scope-resolution rules.


    When using C++, make sure that you include the implementation of a specific function for a class and not just a prototype in the class definition.


    Attempting to call a pure virtual function from the constructor or destructor of an abstract base class will cause LNK2001 since by definition a pure virtual function has no base class implementation.


    Only global functions and variables are public.
    Functions declared with the static modifier by definition have file scope. Static variables have the same limitation. Trying to access any static variables from outside of the file in which they are declared can result in a compile error or LNK2001.

    A variable declared within a function (a local variable) can only be used within the scope of that function.

    C++ global constants have static linkage. This is different than C. If you try to use a global constant in C++ in multiple files you get error LNK2001. One alternative is to include the const initializations in a header file and include that header in your .CPP files when necessary, just as if it was a function prototype. Another alternative is to make the variable non-constant and use a constant reference when assessing it.

    Compiling and Linking Problems

    The names of the Microsoft run-time and MFC libraries needed at link time are included in the object file module by the Microsoft compiler. If you use the /NOD (/NODEFAULTLIB) option, these libraries will not be linked into the project unless you have explicitly included them. Using /NOD will cause error LNK2001 in this case.


    If you are using Unicode and MFC, you will get an unresolved external on _WinMain@16 if you don’t create an entrypoint to wWinMainCRTStartup. Use the /ENTRY option or type this value in the Project Settings dialog box. (To find this option in the development environment, click Settings on the Project menu, then click the Link tab, and click Output in the Category box.) See Unicode Programming Summary.

    See the following Knowledge Base articles located in the Online Information System for more information. An easy way to reach an article is to copy a "Q" number above, open the Search dialog box from the Help menu and select the Query tab, then paste the number into the first text box and press ENTER.
    Q125750 "PRB: Error LNK2001: '_WinMain@16': Unresolved External Symbol"


    Q131204 "PRB: Wrong Project Selection Causes LNK2001 on _WinMain@16"


    Q100639 "Unicode Support in the Microsoft Foundation Class Library"
    Linking code compiled with /MT with the library LIBC.LIB causes LNK2001 on _beginthread, _beginthreadex, _endthread, and _endthreadex.


    When compiling with /MD, a reference to "func" in your source becomes a reference "__imp__func" in the object since all the run-time is now held within a DLL. If you try to link with the static libraries LIBC.LIB or LIBCMT.LIB, you will get LNK2001 on __imp__func. If you try to link with MSVCxx.LIB when compiling without /MD you will not always get LNK2001, but you will likely have other problems.


    Linking code compiled with an explicit or implicit /ML to the LIBCMT.LIB causes LNK2001 on _errno.


    Linking with the release mode libraries when building a debug version of an application can cause LNK2001. Similarly, using an /Mxd option (/MLd, /MTd, or /MDd) and/or defining _DEBUG and then linking with the release libraries will give you potential unresolved externals (among other problems). Linking a release mode build with the debug libraries will also cause similar problems.


    Mixing versions of Microsoft libraries and compiler products can be problematic. A new compiler version's libraries may contain new symbols that cannot be found in the libraries included with previous versions. Use DUMPBIN to find out if a symbol is in a 32-bit object file or library.


    There is currently no standard for C++ naming between compiler vendors or even between different versions of a compiler. Therefore linking object files compiled with other compilers may not produce the same naming scheme and thus cause error LNK2001.


    Mixing inline and non-inline compile options on different modules can cause LNK2001. If a C++ library is created with function inlining turned on (/Ob1 or /Ob2) but the corresponding header file describing the functions has inlining turned off (no inline keyword), you will get this error. To prevent this problem, have the inline functions defined with inline in the header file you are going to include in other files.


    If you are using the #pragma inline_depth compiler directive, make sure you have a value of 2 or greater set, and make sure you are using the /Ob1 or /Ob2 compiler option.


    Omitting the LINK option /NOENTRY when creating a resource-only DLL will cause LNK2001.


    Using incorrect /SUBSYSTEM or /ENTRY settings can cause LNK2001. For example, if you write a character-based application (a console application) and specify /SUBSYSTEM:WINDOWS, you will get an unresolved external for WinMain. For more information on these options and entry points, see the /SUBSYSTEM and /ENTRY linker options.
    Export Problems

    When you are porting an application from 16 to 32 bits, LNK2001 can occur. The current 32-bit module-definition (.DEF) file syntax requires that __cdecl, __stdcall, and __fastcall functions be listed in the EXPORTS section without underscores (undecorated). This differs from the 16-bit syntax, where they must be listed with underscores (decorated). For more information, see the description of the EXPORTS section of module-definition files.


    Any export listed in the .DEF file and not found will cause LNK2001. This could be because it does not exist, is spelled incorrectly, or uses decorated names (.DEF files do not take decorated names).
    This error message is followed by fatal error LNK1120.

    The following sections give more detailed information on some of the issues named in the above list.

    Missing function body or variable


    Name decoration


    The symbol is not public


    Automatic (function scope) variables


    Global constants in C++


    Function inlining problems
    "Be formless, shapeless, like water... You put water into a cup, it becomes the cup, you put water into a bottle, it becomes the bottle, you put it in a teapot, it becomes the teapot... Now water can flow, or it can crash, be water my friend."
    -Bruce Lee

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Compiling sample DarkGDK Program
    By Phyxashun in forum Game Programming
    Replies: 6
    Last Post: 01-27-2009, 03:07 AM
  2. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  3. Including lib in a lib
    By bibiteinfo in forum C++ Programming
    Replies: 0
    Last Post: 02-07-2006, 02:28 PM
  4. Stupid compiler errors
    By ChrisEacrett in forum C++ Programming
    Replies: 9
    Last Post: 11-30-2003, 05:44 PM
  5. debug to release modes
    By DavidP in forum Game Programming
    Replies: 5
    Last Post: 03-20-2003, 03:01 PM