Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这与我之前的问题有关。
如果我有一些为 Android 预构建的 C/C++ 静态库,我可以使用 Apportable 构建工具将它链接到我的应用程序吗?如果有可能,我该怎么做?
或者我应该重新构建任何库以与 Apportable 一起使用?
静态库可以链接,configuration.json 中有一个附加标志,可以在 add_params 部分修改,允许添加静态库。
"libs": [ "path/to/the/lib.a" ]
动态库可以以相同的方式完成,但是这些肯定会导致与我们的 libc 扩展的链接出现问题。例如,这将阻止 .so 使用我们优化的 malloc 实现,或我们的虚拟化文件系统访问器等。