日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

linux动态链接库软件,Linux 动态链接库

發(fā)布時(shí)間:2023/12/19 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 linux动态链接库软件,Linux 动态链接库 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

編譯so 文件 gcc -shared -fPIC

-fPIC 是什么意思呢。。。

看GCC手冊(cè)

-fpic Generate position-independent code (PIC) suitable for use in a shared library,

if supported for the target machine. Such code accesses all constant addresses

through a global offset table (GOT). The dynamic loader resolves the GOT

entries when the program starts (the dynamic loader is not part of GCC; it

is part of the operating system). If the GOT size for the linked executable

exceeds a machine-specific maximum size, you get an error message from the

linker indicating that ‘-fpic’ does not work; in that case, recompile with ‘-fPIC’

instead. (These maximums are 8k on the SPARC and 32k on the m68k and

RS/6000. The 386 has no such limit.)

Position-independent code requires special support, and therefore works only on

certain machines. For the 386, GCC supports PIC for System V but not for the

Sun 386i. Code generated for the IBM RS/6000 is always position-independent.

When this flag is set, the macros __pic__ and __PIC__ are defined to 1.

-fPIC If supported for the target machine, emit position-independent code, suitable

for dynamic linking and avoiding any limit on the size of the global offset table.

This option makes a difference on the m68k, PowerPC and SPARC.

Position-independent code requires special support, and therefore works only

on certain machines.

When this flag is set, the macros __pic__ and __PIC__ are defined to 2.

也就是生成與位置無關(guān)的代碼 windows上面是通過加一個(gè)重定位表來實(shí)現(xiàn)的 。。

linux 和? windows類似 使用了個(gè) GOT 全局偏移描述表來實(shí)習(xí)動(dòng)態(tài)的定位 、、

系統(tǒng)加載的時(shí)候 會(huì)根據(jù)加載的地址 修正偏移表里的偏移? 這樣就實(shí)現(xiàn)了代碼的執(zhí)行與代碼所在的位置位置無關(guān)。。

怎么使用動(dòng)態(tài)鏈接庫(kù)呢 shared object

總結(jié)

以上是生活随笔為你收集整理的linux动态链接库软件,Linux 动态链接库的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。