mirror of
https://github.com/Noratrieb/blog.git
synced 2026-01-14 04:25:01 +01:00
fix typo
This commit is contained in:
parent
04f7cf7d27
commit
ea2758dd10
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ A static library is just an `ar` (similar to `tar`) archive of object files.
|
||||||
|
|
||||||
### Dynamic Library (`lib*.so`)
|
### Dynamic Library (`lib*.so`)
|
||||||
|
|
||||||
Mainly called "shared library" in ELF, they are the oppose of static libraries.
|
Mainly called "shared library" in ELF, they are the opposite of static libraries.
|
||||||
If you link against a shared library, the code from the shared library will *not* end up in the final binary.
|
If you link against a shared library, the code from the shared library will *not* end up in the final binary.
|
||||||
Instead, the shared library will be loaded at runtime startup, and the dynamic linker will resolve the references to its symbols there.
|
Instead, the shared library will be loaded at runtime startup, and the dynamic linker will resolve the references to its symbols there.
|
||||||
We will not go into dynamic linking and loading in this post,
|
We will not go into dynamic linking and loading in this post,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue