在 Linux 上使用 makefile 为复杂项目构建动态库
我正在尝试在具有不同模块的 Linux 上构建一个共享库,并且由于源文件分布在不同的子目录中,因此我无法弄清楚如何创建脚本和 makefile 来将整个项目编译为单个动态共享库模块依赖于其他模块。
有人可以给我任何示例或教程来帮助我吗?
I'm trying to build a shared library on Linux having different modules, and since source files are spreded in different sub directories, I am having trouble figuring out how to create scripts and makefiles to compile the whole project as a single Dynamic shared Library with modules depending on other modules.
Could anyone please give me any examples or tutorials to help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我总是发现这篇文章很有用:
和可加载 Linux 库
静态、共享动态 您需要做一个关于 Make 的教程。
I always found this article useful:
Static, Shared Dynamic and Loadable Linux Libraries
From there you'll want to do a tutorial on Make.