Thread: 'Random' linker warnings VC++ 2005 Express

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #10
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    Could you tell me, though: what exactly does the runtime library do? Does it provide functionality for threaded programming?
    It stores all the library functions you can call in your code like printf, exp or strlen

    the multithreading and singlethreading libraries differ not only in the existense of the functions like beginthread, but also in the internal structure of each function whose original code can be not thread safe. For example each standard function that sets the errno value should be rewritten for the multithreaded environment.

    How should I 'provide' the pdb file and to what should I provide it?
    if you have it or could download from the server where you got the debug version of the library - just put it into the direcrtory where the debug version of the lib is located.

    It is indeed located at "Project options/ C++/General/Debug info". So should I set it to C7 or not?
    I'm not talking about your project, I'm talking about project that is used to compile the library itself.
    If you have the source code of the library - you can do it.
    If you don't have the source code - this path is unavailable for you.
    Last edited by vart; 01-12-2007 at 02:16 PM.
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Task list in VC 2005
    By VirtualAce in forum Tech Board
    Replies: 0
    Last Post: 05-13-2008, 08:59 PM
  2. Linker errors in VC++ 2005
    By C+/- in forum C++ Programming
    Replies: 0
    Last Post: 05-18-2007, 07:42 AM
  3. Linker errors with 2005 Express
    By thetinman in forum Windows Programming
    Replies: 4
    Last Post: 12-30-2006, 09:04 AM
  4. Help: Microsoft Visual Basic 2005 Express Editon
    By karlawarla in forum Windows Programming
    Replies: 5
    Last Post: 11-22-2006, 02:46 PM
  5. Another brain block... Random Numbers
    By DanFraser in forum C# Programming
    Replies: 2
    Last Post: 01-23-2005, 05:51 PM