0

我用这个命令链接了一些文本文件:

ld -r -b 二进制 -o resources1.o *.txt

我得到一个包含以下内容的文件resources.o:

纳米资源1.o

00000018 D _binary_texto4_txt_end
00000018 A _binary_texto4_txt_size
00000000 D _binary_texto4_txt_start
00000031 D _binary_texto5_txt_end
00000019 A _binary_texto5_txt_size
00000018 D _binary_texto5_txt_start
0000004a D _binary_texto6_txt_end
00000019 A _binary_texto6_txt_size
00000031 D _binary_texto6_txt_start

我有来自另一个 ld 命令的其他 resources2.o 文件,但它有不同的内容:

00000018 D _binary___textos1_texto1_txt_end
00000018 A _binary___textos1_texto1_txt_size
00000000 D _binary___textos1_texto1_txt_start
00000031 D _binary___textos1_texto2_txt_end
00000019 A _binary___textos1_texto2_txt_size
00000018 D _binary___textos1_texto2_txt_start
0000004a D _binary___textos1_texto3_txt_end
00000019 A _binary___textos1_texto3_txt_size
00000031 D _binary___textos1_texto3_txt_start

我想将这两个 resources.o 文件合并到一个 libSum.a 文件中。所以我使用这个命令:

ar rvs libSum.a 资源1.o 资源2.o

当我将 libSum.a 链接到我的 C 程序并尝试使用这些文本时,我不能因为它们共享相同的内存偏移量。所以二进制__textos1_texto1_txt_start 与 _binary_texto4_txt_start (0X00000000) 具有相同的方向。

如何将两个资源文件合并到一个 .a lib 中以避免内存偏移重叠?谢谢

4

1 回答 1

0

文件内容有一个愚蠢的错误。它们是具有不同名称的同一个文件(复制和粘贴错误),因此在显示其内容时,它似乎是内存偏移错误。

现在,我正在使用下一个脚本来编译“libResources.a”库中的所有资源:

rm libResources.a
rm names.txt

basedir=$1
for dir in "$basedir"/*; do
    if test -d "$dir"; then
    rm "$dir"/*.o
    ld -r -b binary -o "$dir"/resources.o "$dir"/*
    nm "$dir"/resources.o >> names.txt
    fi
done

for dir in "$basedir"/*; do
    if test -d "$dir"; then
    ar q libResources.a "$dir"/*.o
    fi
done

为了测试我的硬编码资源,我使用以下 C 代码:

/*
 ============================================================================
 Name        : linkerTest.c
 ============================================================================
 */

#include <stdio.h>
#include <stdlib.h>

extern char _binary___textos1_texto1_txt_start[];
extern char _binary___textos1_texto1_txt_end[];

extern char _binary___textos2_texto4_txt_start[];
extern char _binary___textos2_texto4_txt_end[];

int main(void) {
    int i;
    int sizeTexto1 = _binary___textos1_texto1_txt_end - _binary___textos1_texto1_txt_start;
    int sizeTexto4 = _binary___textos2_texto4_txt_end - _binary___textos2_texto4_txt_start;


    for (i=0;i<sizeTexto1;i++){
        putchar(_binary___textos1_texto1_txt_start[i]);
    }

    for (i=0;i<sizeTexto4;i++){
        putchar(_binary___textos2_texto4_txt_start[i]);
    }

    return EXIT_SUCCESS;
}

如果您想测试我的示例,请不要忘记在您的项目中链接文件“libResources.a”。

于 2012-12-03T12:41:09.647 回答