runtime - What exactly is a "run-time"? -


My company is not always a problem with the software because "run-time" or unavailable I have heard that people say a lot (You need 32-bit run time, Microsoft run-time, etc.).

What exactly is being referred? DLL files? Something different? Can anyone clarify?

Run-time is basically the time on which your code is running (as opposed to )

In the context you are seeing it, it means that from time to time library, those libraries need to be loaded to execute your program.

Due to the statically linked code it is dynamically linked stuff (DLL or shared objects) (it is only in the executable file).

An excellent example is Microsoft's C run-time or dependent on Net Libraries but they do not ship with their product. This means that your executable will run on any machine, in which those libraries already exist (as if they are installed with Visual Studio), but not necessarily every computer you want to turn on your code.

I answered a question about the difference between stable and dynamic linking, which is expected to add to your knowledge. Dynamic linking allows you to update parts of the app without re-compiling or ringing. You do this by leaving it in the new version of DLL. Unfortunately, placing that code in a different file means that it might disappear.

This will be a cause for the problem, but I suspect that most likely it is that a person does not do his installation code very well, otherwise everything that is needed will be established.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -