|
|
|
|
|
by sqrt_1
768 days ago
|
|
If you are thinking about the C runtime on Windows, you can statically link those dlls into your program via compile time options. There are valid reasons for dlls however. The main one being symbol name collision. For example, you can use a dll that links to version 1 of a library, while using version 2 of the library yourself without having any name collisions. Many years ago when I did Linux development this was a main gripe of using .so files - imported names could clash with the same global names in your program and you get random runtime behaviour. |
|