bstatic, bdynamic

Posted aerfa828

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bstatic, bdynamic相关的知识,希望对你有一定的参考价值。

bstatic, bdynamic

Option Type Default Value #pragma options C C++
-flag bdynamic - x x

Syntax

    -bstatic | -bdynamic

Purpose
Controls how libraries are processed by specifying which forms of library names the linkage editor looks for.

Notes
The linkage editor searches library names and paths specied by the -l and -L options according to the following criteria:

bdynamic For settings of the -lkey option appearing after the -bdynamic option, both libkey.so and libkey.a library files are searched for by the linkage editor. This option remains in effect until overridden by the appearance of the -bstatic option, which in turn affects -lkey options appearing after it.
bstatic For settings of the -lkey option appearing after the -bstatic option, only libkey.a library files are searched for by the linkage editor. This option remains in effect until overridden by the appearance of the -bdynamic option, which in turn affects -lkey options appearing after it.

The default option, -bdynamic, ensures that the C library (lib.c) links dynamically. To avoid possible problems with unresolved linker errors when linking the C library, you must add the -bdynamic option to the end of any compilation sections that use the -bstatic option.

Example
To compile myprogram.c using a static version of the libtask.a Task Library and a dynamic version version of the libcomplex.a Complex Mathematics Library, enter:

xlC myprogram.c -bstatic -ltask -bdynamic -lcomplex

以上是关于bstatic, bdynamic的主要内容,如果未能解决你的问题,请参考以下文章

静态库和动态库同时链接

如何在 CMake 中指定链接类型?

C/C++编译问题,静态库,动态库。

2017.4.8 笔记 final

微信小程序代码片段

VSCode自定义代码片段——CSS选择器