• Microsoft Visual C++
    5 replies, posted
I need some help. I build a release of my program and send it to friends and they get error saying the don't have MSVCP100.dll. I realize that is part of the compiler so how do I release my program?
Have him install the redistributable for whatever version you used. 2010 by the filename. [url=http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a7b7a05e-6de6-4d3a-a423-37bf0912db84]Visual C++ Redistributable 2010[/url]
You can also avoid this by changing the project properties. Specifically, change C++ -> Code Generation -> Runtime Library to Multi-threaded in the release configuration. Note that this will increase filesize a bit since it doesn't use the installed dlls.
[QUOTE=Metroid48;29324232]You can also avoid this by changing the project properties. Specifically, change C++ -> Code Generation -> Runtime Library to Multi-threaded in the release configuration. Note that this will increase filesize a bit since it doesn't use the installed dlls.[/QUOTE] Thanks a bunch. Now how would I compile applications for a different OS on VC? :/ Sorry just starting to get into C++ used to program in web based languages.
I don't think it's possible with VS: [url]http://stackoverflow.com/questions/4554394/cross-compile-application-built-with-ms-visual-studio-2010[/url] [editline]22nd April 2011[/editline] [url=http://gcc.gnu.org/]gcc[/url] is a different compiler and I'm not sure if it's easy to switch out compilers in VS. You could of course switch the development environment and look if you can then cross-compile for different OSs.
[QUOTE=ZeekyHBomb;29351193]I don't think it's possible with VS: [url]http://stackoverflow.com/questions/4554394/cross-compile-application-built-with-ms-visual-studio-2010[/url] [editline]22nd April 2011[/editline] [url=http://gcc.gnu.org/]gcc[/url] is a different compiler and I'm not sure if it's easy to switch out compilers in VS. You could of course switch the development environment and look if you can then cross-compile for different OSs.[/QUOTE] Thanks Zeeky. I'll check it out.
Sorry, you need to Log In to post a reply to this thread.