我有一个自己的共享库,它正在做一些低级别的事情。它需要在编译时知道它加载的起始地址。
是否有强制加载程序在固定地址加载共享库?
答案 0 :(得分: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
...