run-time libraries

does c++depend on a run-time library?
In Windows, yes. Windows nowadays can have different runtime versions installed "side by side". You can "wave" the runtime requirement by statically linking to it, though.

Other OS's, you probably have the same ability of statically linking to the CRT, and I don't know if you have the other option.
how can I staticly link to it
It generally depends on your compiler...go check the site for you compiler or the help section and do a search for static linking or something similar.
Topic archived. No new replies allowed.