当一个扩展包含来自另一扩展的头文件时,如何编写 extconf.rb 文件?

发布于 2024-09-02 18:32:58 字数 510 浏览 4 评论 0原文

这是一个后续问题:一个目录下的多个 Ruby 模块

如果这些扩展相互包含会发生什么?例如,您有以下结构:

ext/foo
ext/bar

ext/bar/bar.h 中,您有一个

#include "foo.h"

foo.hfoo.cpp 编译形成foo.o,让生活变得更复杂一些。

最后,foo 和 bar 必须是单独的扩展。

这是如何管理的?我主要不知道如何将 ../foo 添加到 bar.h 的搜索路径中。符号链接看起来很黑客。

This is a follow-up question for: Multiple Ruby modules under one directory

What happens if these extensions include each other? For example, you have the following structure:

ext/foo
ext/bar

In ext/bar/bar.h, you have a

#include "foo.h"

foo.h and foo.cpp compile to form foo.o, to make life a little more complicated.

Finally, it is necessary that foo and bar be separate extensions.

How is this managed? I can't figure out how to add ../foo to the search path for bar.h, primarily. Symbolic links seem hack-ish.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2024-09-09 18:32:58

您可以使用 mkrf_conf.rb 文件先执行另一个

https://github.com/ rdp/ruby_tutorials_core/wiki/gem

you could use a mkrf_conf.rb file that does one then the other

https://github.com/rdp/ruby_tutorials_core/wiki/gem

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文