CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Posts
    15

    Linking DLLs using implicit linking

    I have developed a DLL that my application uses. What I have found is that if I'm building a debug version of my application I must use the debug version of the DLL. Is this common? Is there a way to always use the release version of the DLL?

    Thanks in advance
    Eddy


  2. #2
    Guest

    Re: Linking DLLs using implicit linking

    This is as it should be....there are some differences with how variables and data are initialized in debug vs. release. You should, however, be able to build the DLL in "Release with debug info" and use the with your debug project......



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured