`

Static and dynamic libraries

 
阅读更多

library is a package of code that is meant to be reused by many programs. Typically, a C++ library comes in two pieces:

1) A header file that defines the functionality the library is exposing (offering) to the programs using it.
2) A precompiled binary that contains the implementation of that functionality pre-compiled into machine language.

Some libraries may be split into multiple files and/or have multiple header files.

Libraries are precompiled for several reasons. First, since libraries rarely change, they do not need to be recompiled often. It would be a waste of time to recompile the library every time you wrote a program that used them. Second, because precompiled objects are in machine language, it prevents people from accessing or changing the source code, which is important to businesses or people who don’t want to make their source code available for intellectual property reasons.

There are two types of libraries: static libraries and dynamic libraries.

static library (also known as an archive) consists of routines that are compiled and linked directly into your program. When you compile a program that uses a static library, all the functionality of the static library becomes part of your executable. On Windows, static libraries typically have a .lib extension, whereas on linux, static libraries typically have an .a (archive) extension. One advantage of static libraries is that you only have to distribute the executable in order for users to run your program. Because the library becomes part of your program, this ensures that the right version of the library is always used with your program. Also, because static libraries become part of your program, you can use them just like functionality you’ve written for your own program. On the downside, because a copy of the library becomes part of every executable that uses it, this can cause a lot of wasted space. Static libraries also can not be upgraded easy — to update the library, the entire executable needs to be replaced.

dynamic library (also called a shared library) consists of routines that are loaded into your application at run time. When you compile a program that uses a dynamic library, the library does not become part of your executable — it remains as a separate unit. On Windows, dynamic libraries typically have a .dll (dynamic link library) extension, whereas on Linux, dynamic libraries typically have a .so (shared object) extension. One advantage of dynamic libraries is that many programs can share one copy, which saves space. Perhaps a bigger advantage is that the dynamic library can be upgraded to a newer version without replacing all of the executables that use it.

Because dynamic libraries are not linked into your program, programs using dynamic libraries must explicitly load and interface with the dynamic library. This mechanisms can be confusing, and makes interfacing with a dynamic library awkward. To make dynamic libraries easier to use, an import library can be used.

An import library is a library that automates the process of loading and using a dynamic library. On Windows, this is typically done via a small static library (.lib) of the same name as the dynamic library (.dll). The static library is linked into the program at compile time, and then the functionality of the dynamic library can effectively be used as if it were a static library. On Linux, the shared object (.so) file doubles as both a dynamic library and an import library.

Installing and using libraries

Now that you know about the different kinds of libraries, let’s talk about how to actually use libraries in your program. Installing a library in C++ typically involves 4 steps:

1) Acquire the library. The best option is to download a precompiled package for your operating system (if it exists) so you do not have to compile the library yourself. If there is not one provided for your operating system, you will have to download a source-code-only package and compile it yourself (which is outside of the scope of this lesson). On Windows, libraries are typically distributed as .zip files. On Linux, libraries are typically distributed as packages (eg. .RPM). Your package manager may have some of the more popular libraries (eg. SDL) listed already for easy installation, so check there first.

2) Install the library. On Linux, this typically involves invoking the package manager and letting it do all the work. On Windows, this typically involves unzipping the library to a directory of your choice. We recommend keeping all your libraries in one location for easy access. For example, use a directory called C:\Libs, and put each library in it’s own subdirectory.

3) Make sure the compiler knows where to look for the header file(s) for the library. On Windows, typically this is the \include subdirectory of the directory you installed the library files to (eg. if you installed your library to C:\libs\SDL-1.2.11, the header files are probably in C:\libs\SDL-1.2.11\include). On Linux, libraries are typically installed to /usr/include, which should already be part of your include file search path. However, if the files are installed elsewhere, you will have to tell the compiler where to find them.

4) Tell the linker where to look for the library file(s) for the library. As with step 3, this typically involves adding a directory to the list of places the linker looks for libraries. On Windows, this is typically the /lib subdirectory of the directory you installed the library files to. On Linux, libraries are typically installed to /usr/lib, which should already be a part of your library search path.

Once the library is installed and the IDE knows where to look for it, the following 3 steps typically need to be performed for each project that wants to uses the library:

5) If using static libraries or import libraries, tell the linker which library files to link.

6) #include the library’s header file(s) in your program. This tells the compiler about all of the functionality the library is offering so that your program will compile properly.

7) If using dynamic libraries, make sure the program know where to find them. Under Linux, libraries are typically installed to /usr/lib, which is in the default search path. On Windows, the default search path includes the directory the program is run from, directories set by calling SetDllDirectory(), the Windows, System, and System32 directories, and directories in the PATH environment variable. The easiest way to use a .dll to copy the .dll to the location of the executable. Since you’ll typically distribute the .dll with your executable, it makes sense to keep them together anyway.

Steps 3-5 involve configuring your IDE — fortunately, almost all IDEs work the same way when it comes to doing these things. Unfortunately, because each IDE has a different interface, the most difficult part of this process is simply locating where the proper place to perform each of these steps is. Consequently, in the next few lessons in this section, we’ll cover how to do all of these steps for both Visual Studio Express 2005 and Code::Blocks. If you are using another IDE, read both — by the time you’re done, you should have enough information to do the same with your own IDE with a little searching.

 

 

http://www.learncpp.com/cpp-tutorial/a1-static-and-dynamic-libraries/

分享到:
评论

相关推荐

    osgdb_dae.dll

    If both static and dynamic libraries are found it will by default pick the static library. If you switch on the advanced options in CMake you may overrule this setting by manually changing the ...

    Microsoft Visual C ++静态和动态库

    在提供的压缩包文件中,"Microsoft-Visual-C-Static-and-Dynamic-Libraries.pdf"很可能包含有关这两种库的详细解释和示例。"DynamicSrc.zip"和"StaticSrc.zip"可能是包含演示静态库和动态库使用方法的源代码示例,...

    在动态库(dynamic libraries)和静态库(static libraries)使用模板(template)

    在C++编程中,动态库(Dynamic Libraries)和静态库(Static Libraries)是两种常见的代码复用方式。模板(Templates)则是一种强大的泛型编程工具,允许我们在编译时创建类型安全的通用代码。理解如何在动态库和...

    toolchain.tar.gz

    5. 静态和动态库(Static and Dynamic Libraries):如lib目录中的文件,是程序运行所依赖的库文件,包括C运行时库、数学库、网络库等。 6. SDK(Software Development Kit):除了编译工具,还包括API文档、示例...

    Qnx 4 to Qnx Neutrino 移植指南

    - **Static and Dynamic Libraries:**QNX Neutrino 支持静态库和动态库,这为开发者提供了更灵活的选择。 - **Useful Manifests:**通过使用Manifest文件,可以更好地管理应用程序依赖关系。 - **Debugging:**新...

    在动态库和静态库中使用模板(dynamic libraries ,static libraries)

    libraries可以分为两类:静态库(static libraries)和动态库(dynamic libraries)。静态库是一种将所有库成员都编译到目标文件中的库,而动态库是一种可以在运行时被加载和卸载的库。然而,在使用动态库和静态库...

    An Introduction to GCC

    Topics covered include: compiling C and C++ programs using header files and libraries, warning options, use of the preprocessor, static and dynamic linking, debugging, optimization, platform-specific ...

    Oracle Solaris 11.1 Linkers and Libraries Guide-476

    二、动态链接(Dynamic Linking)与静态链接(Static Linking) Oracle Solaris支持动态链接和静态链接两种方式。动态链接允许程序在运行时加载库,这可以节省磁盘空间和内存,因为多个程序可以共享同一库的实例。...

    Linux高级编程 (英文 C语言) .rar

    THIS CHAPTER SHOWS YOU HOW TO PERFORM THE ...”pay careful attention to Section 2.3,“Writing and Using Libraries,”for information about static versus dynamic linking that you might not already know.

    Oracle Solaris 10 Linker and Libraries Guide-456

    《Oracle Solaris 10 Linker and Libraries Guide》是Oracle公司发布的一份技术文档,主要针对Oracle Solaris 10操作系统中的链接器和库进行了详细阐述。这份指南旨在帮助开发者和系统管理员理解如何在Solaris环境中...

    Learning PHP, MySQL & JavaScript 5th Robin Nixon

    This book is for people who wish to learn how to create effective and dynamic websites. This may include webmasters or graphic designers who are already creating static websites but wish to take their...

    Filthy Rich Clients: Developing Animated and Graphical Effects for Desktop Java Applications (Part 1)

    Learn new utility libraries that vastly simplify animations in Java. * Effects: Learn how to create, customize, and use static and animated effects—the mainstays of Filthy Rich Clients. <br>...

    delphi窗体反编译IDR (Interactive Delphi Reconstructor)

    IDR (Interactive Delphi Reconstructor) – a decompiler of executable files (EXE) and dynamic libraries (DLL), written in Delphi and executed in Windows32 environment. The program firstly is intended ...

    Addison.Wesley.-.Imperfect.C++.Practical.Solutions.for.Real-Life.Programming.chm

    Handle behavior ignored by the standard--including issues related to dynamic libraries, static objects, and threading Achieve binary compatibility between dynamically loading components Understand ...

    Mastering Machine Learning Algorithms 2018

    Understand how to create and learn static and dynamic probabilistic models Successfully cluster high-dimensional data and evaluate model accuracy Discover how artificial neural networks work and how ...

    设置要链接的库文件的名称TARGET-LINK-LIBRARIES.txt

    库文件可以是静态库(static libraries)也可以是动态库(shared or dynamic libraries)。 在使用CMake构建系统时,可以使用`target_link_libraries`命令来为特定的目标(target)设置链接的库文件。目标可以是可...

Global site tag (gtag.js) - Google Analytics