Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3279536
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:36:14+00:00 2026-05-17T19:36:14+00:00

I have some external dependencies to load with my C++ program, like boost or

  • 0

I have some external dependencies to load with my C++ program, like boost or other libraries. If those .DLL of libraries are not in $PATH, once I run my program I got a “can’t load the DLL” error message. To make those .DLL can be load when running my program, I need to add those path to libraries directory. For example:

PATH=$PATH;c:\boost\lib

It works, but I don’t like this stupid solution, which makes the global environment dirty. Also, I have lots more dependencies to add. The worst thing to do this way is, once you have different version of dependencies, it is very annoying. e.g. Here you have a project A depends on boost1.3.7, to develop it, you have to change the PATH

PATH=$PATH;c:\boost1.3.7\lib

And, here you need to develop another project B which depends on boost1.4.4, oh, great…. change the variable

PATH=$PATH;c:\boost1.4.4\lib

As you can see, this is not a smart solution…. If you have more than one library to link, that would be a real nightmare. What I want is to modify property of VC++ project, add those path to PATH variable only when running/debugging my program. I have tried to add path to

VC++ Directories -> Executable Directories

But it seems that’s PATH for building, not for running. So, how can I add paths to my VC++ project for running my program correctly?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:36:15+00:00Added an answer on May 17, 2026 at 7:36 pm

    not sure why you consider adding it to the PATH as a ‘stupid’ solution? It is a very common solution for 3rd party libs. What if you want to redistribute your application, or just run it from the command line instead of running it under VS?

    if you insist on not modifying the global path, you can also try:

    • add the required dlls to the executable’s directory (= very messy and error-prone in case of multiple versions and/or multiple build paths)
    • add the reuired dlls to %WINDIR%/system32 (same remark as above)
    • make a batch file that sets the PATH you want, then invoke VS. Now VS uses the PATH you just set, while the global PATH remains unchanged.
    • ou could try getting dlls installed in the WinSxS folders, but that’s not so easy. (for example)

    btw to get around the versioning problem, use symlinks:

    mklink /J c:/boost c:/boost1.3.7
    

    then add just c:/boost to your PATH. If the version changes, change the symlink instead of the environment

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some classes layed out like this class A { public virtual void
I have some code like this in a winforms app I was writing to
I have some UI in VB 2005 that looks great in XP Style, but
I have some ASP.NET web services which all share a common helper class they
I have some code for starting a thread on the .NET CF 2.0: ThreadStart
We have some input data that sometimes appears with &nbsp characters on the end.
I have some C# / asp.net code I inherited which has a textbox which
I have some kind of test data and want to create a unit test
We have some files on our website that users of our software can download.
I have some strings of xxh:yym format where xx is hours and yy is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.