removing msvcp80 dependency

  • Thread starter Thread starter Abubakar
  • Start date Start date
A

Abubakar

Hi,
I wrote some network n multithreading code in pure c++, my exe compiles with
only 9k. But it requires msvcp80.dll & msvcr80 dlls to run on a different
machine. I want to build my exe such that I dont have to provide these dlls
with my exe. I know that size would increase but thats not a problem. I
beleive it should be somewhere in the project properties but i cant find it.

Thanks.

Ab.
 
Hi Abubakar!
I wrote some network n multithreading code in pure c++, my exe compiles with
only 9k. But it requires msvcp80.dll & msvcr80 dlls to run on a different
machine. I want to build my exe such that I dont have to provide these dlls
with my exe. I know that size would increase but thats not a problem. I
beleive it should be somewhere in the project properties but i cant find it.

Just a small note:
W95 is not a supported target platform for VC8!

http://msdn2.microsoft.com/en-us/library/ms235435

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
 
Abubakar said:
I wrote some network n multithreading code in pure c++, my exe compiles
with
only 9k. But it requires msvcp80.dll & msvcr80 dlls to run on a different
machine. I want to build my exe such that I dont have to provide these
dlls
with my exe. I know that size would increase but thats not a problem. I
beleive it should be somewhere in the project properties but i cant find
it.
You're looking for /MT. It's under "C/C++" => "Code Generation" =>
"Runtime Library" in the IDE.

-hg
 
Back
Top