如何将链接目标添加到 Ruby mkmf?
在我的Ruby扩展中,代码被组织到目录中,带有extconf.rb
位于主库文件中树的根部。
此设置的问题是目录内的所有文件都没有链接到我的库。 mkmf
似乎根本没有考虑它们。
如何手动将它们添加为 mkmf
中的链接目标?
更好的问题是:我可以使用更灵活的 Ruby 构建系统吗?
In my Ruby extension, the code is organized into directories, with extconf.rb
sitting at the root of the tree among the main library files.
The problem with this setup is that all files inside directories are not being linked against my library. mkmf
doesn't seem to consider them at all.
How do I manually add them as link targets in mkmf
?
Better question would be: is there a more flexible build system for Ruby that I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 100% 确定,但是您尝试过
dir_config()
吗?请参阅 mkfm.rb 的注释: http://www.ruby-doc.org/stdlib-1.9.3/libdoc/mkmf/rdoc/Object.html#method-i-dir_config
I'm not 100% sure, but have you tried
dir_config()
?See the notes for mkfm.rb: http://www.ruby-doc.org/stdlib-1.9.3/libdoc/mkmf/rdoc/Object.html#method-i-dir_config