Visible to Intel only — GUID: GUID-7F16A8E6-0A8C-4E83-A166-DBD996D9C419
Visible to Intel only — GUID: GUID-7F16A8E6-0A8C-4E83-A166-DBD996D9C419
Store Routines in Shareable Libraries
You can organize the code in your application by storing the executable code for certain routines in a shareable library (.dll for Windows*, .so for Linux*, or .dylib for macOS). You can then build your applications so that they call these routines from the shareable library.
When routines in a shareable library are called, the routines are loaded into memory at runtime as they are needed. This is most useful when several applications use a common group of routines. By storing these common routines in a shareable library, you reduce the size of each application that calls the library. In addition, you can update the routines in the library without having to rebuild any of the applications that call the library.