链接程序和库指南

定义不相关接口

上述示例说明了添加到目标文件中的新版本定义如何继承任何现有的版本定义。还可以创建唯一且独立的版本定义。以下示例将两个新文件 bar1.cbar2.c 添加到目标文件 libfoo.so.1 中。这两个文件分别提供新符号 bar1bar2


$ cat bar1.c

extern  void foo1();



void bar1()

{

        foo1();

}

$ cat bar2.c

extern  void foo2();



void bar2()

{

        foo2();

}

这两个符号旨在定义两个新的公共接口。这些新接口互不相关。但是,每个接口都依赖于原始的 SUNW_1.2 接口。

以下 mapfile 定义将创建这种所需的关联:


$ cat mapfile

SUNW_1.1 {                   # Release X

        global:

                foo1;

        local:

                *;

};



SUNW_1.2 {                   # Release X+1

        global:

                foo2;

} SUNW_1.1;



SUNW_1.2.1 { } SUNW_1.2;     # Release X+2



SUNW_1.3a {                  # Release X+3

        global:

                bar1;

} SUNW_1.2;



SUNW_1.3b {                  # Release X+3

        global:

                bar2;

} SUNW_1.2;

同样,可以使用 pvs(1) 检查使用此 mapfile 时在 libfoo.so.1 中创建的版本定义及其依赖项:


$ cc -o libfoo.so.1 -M mapfile -G foo.o bar1.o bar2.o data.o

$ pvs -dv libfoo.so.1

        libfoo.so.1;

        SUNW_1.1;

        SUNW_1.2:                {SUNW_1.1};

        SUNW_1.2.1 [WEAK]:       {SUNW_1.2};

        SUNW_1.3a:               {SUNW_1.2};

        SUNW_1.3b:               {SUNW_1.2};

以下各节介绍如何使用这些版本定义记录来检验运行时绑定要求以及在创建目标文件过程中控制其绑定。