Runtime ?

This is a rookie question...What is meant by C++ runtime? I heard someone say "we don't have the luxury of a c++ runtime on this system". And how does it differ to C or Objective-C.
runtime - is libraries of standard C++ functions.
In the context, I would agree with Vlad.

However, normally I would use "runtime" in a context to say that a program is running. ie. "Error in runtime" would mean that it compiles fine, but crashes or bugs when the program is actually running.
closed account (zb0S216C)
Run-time is a time-frame that begins at the point of program initialisation and ends at the point of program termination.

Dynamic-Link Libraries are "injected" at run-time. Static libraries are linked at compile-time and are copied into the program during compilation. The C++ standard libraries are static (on my system) and therefore, they are linked at compile-time.

Wikipedia wrote:
"In computer science, a static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable." [1]


References:
[1] http://en.wikipedia.org/wiki/Static_library


Wazzak
Last edited on
Topic archived. No new replies allowed.