Thread: C++ runtime, dynamic link, mingw.

  1. #1
    Registered User
    Join Date
    Apr 2007
    Location
    Sydney, Australia
    Posts
    217

    C++ runtime, dynamic link, mingw.

    Hello. I would just like to know how i can make my mingw compiled program dynamically link to the c++ library. I know that Visual C++ 7 gives you the option to either use a static link library or a dynamic link library for the c++ standard lib, but in mingw i dont know how to choose dynamic link library.

  2. #2
    Registered User Codeplug's Avatar
    Join Date
    Mar 2003
    Posts
    4,981
    MinGW uses MSVCRT.DLL for standard C functions, and GNU's libstdc++ for the standard C++ library. I don't believe there is a DLL for libstdc++.

    In short, there is no static vs. dynamic choice.

    gg

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 8
    Last Post: 12-01-2008, 10:09 AM
  2. I'm confused about link lists (again)
    By JFonseka in forum C Programming
    Replies: 4
    Last Post: 06-13-2008, 08:13 PM
  3. link list error
    By caroundw5h in forum C Programming
    Replies: 2
    Last Post: 04-13-2006, 07:35 PM
  4. Replies: 19
    Last Post: 01-12-2006, 11:04 AM
  5. Static linked DirectX or dynamic?
    By VirtualAce in forum Game Programming
    Replies: 2
    Last Post: 11-21-2005, 05:46 AM