Richard Robertson Posted February 4, 2010 Posted February 4, 2010 I've heard that AutoIt was built in Visual Studio, but I've never run into any VC++ runtime issues with AutoIt. Is there something special you guys are doing to get it to work without the VC++ runtime installed?
monoceres Posted February 4, 2010 Posted February 4, 2010 (edited) I've heard that AutoIt was built in Visual Studio, but I've never run into any VC++ runtime issues with AutoIt. Is there something special you guys are doing to get it to work without the VC++ runtime installed?Easy: Statically link the runtime with the PE. It adds ~100 kB but it's totally worth it in most situations.Edit: And how to do it: Project Properties-> C/C++-> Code generation -> Change from multi-threaded dll to just multi-threaded. Edited February 4, 2010 by monoceres Broken link? PM me and I'll send you the file!
Administrators Jon Posted February 4, 2010 Administrators Posted February 4, 2010 Edit: And how to do it: Project Properties-> C/C++-> Code generation -> Change from multi-threaded dll to just multi-threaded.This.And yes, it's Visual Studio 2008 SP1.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now