TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Resources to learn to build a dynamic linker

3 点作者 setheron超过 2 年前
I would love to go through the exercise of building a dynamic linker.<p>Unfortunately there is so little subject matter on this vs. something like a compiler.<p>Are there any good learning resources? I have tried auditing glibc or musl but they are either so complex or terse.<p>Does an implementation for the purpose of learning exist?

2 条评论

mac3n超过 2 年前
&quot;Linkers and Loaders&quot; John R. Levine, <a href="https:&#x2F;&#x2F;linker.iecc.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;linker.iecc.com&#x2F;</a>
评论 #33198622 未加载
dswilkerson超过 2 年前
Likely just try to build one. The constraining resource is just being able to play with ELF files. The best ELF library we have found is <a href="https:&#x2F;&#x2F;github.com&#x2F;serge1&#x2F;ELFIO" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;serge1&#x2F;ELFIO</a> . Very easy to use and works predictably.