0

我有一个自己的共享库,它正在做一些低级的事情。它需要在编译时知道它的加载起始地址。

无论如何强制加载程序在固定地址加载共享库?

4

1 回答 1

1
# create linker script

$ export BASE_ADDRESS=0x00800000
$ gcc -shared -Wl,--verbose 2>&1 | sed -e '/^======/,/^======/!d' -e '/^======/d;s/0\(.*\)\(+ SIZEOF_HEADERS\)/'$BASE_ADDRESS'\1\2/' >foo.lds

# build and link with linker-script

$ gcc -shared foo.c -o foo.o
$ gcc -Wl,-T,foo.lds -shared -fPIC foo.o -o foo.so
$ objdump --syms foo.so 

foo.so:     file format elf32-i386

SYMBOL TABLE:

00800114 l    d  .note.gnu.build-id 00000000              .note.gnu.build-id
00800138 l    d  .gnu.hash  00000000              .gnu.hash
0080016c l    d  .dynsym    00000000              .dynsym
008001fc l    d  .dynstr    00000000              .dynstr
...
于 2013-09-12T11:10:26.497 回答