期望 - c 程序

发布于 2024-10-09 03:41:14 字数 319 浏览 1 评论 0 原文

我正在尝试使用expect.h 标头编译用c 编写的程序。我正在尝试这个:

cc -I/usr/include main.c -lexpect -ltcl
cc -I/usr/include main.c

我尝试了与 gcc 相同的方法,但没有成功。

我明白了:

undefined reference to `exp_spawnl'
undefined reference to `exp_expectl'

有什么想法吗?

谢谢,

沃尔特

I am trying to compile a program written in c using the expect.h header. I am trying this:

cc -I/usr/include main.c -lexpect -ltcl
cc -I/usr/include main.c

I tried the same with gcc, but to no avail.

I get this:

undefined reference to `exp_spawnl'
undefined reference to `exp_expectl'

Any ideas?

Thanks,

Walter

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

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

发布评论

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

评论(2

演出会有结束 2024-10-16 03:41:14

这意味着无论您认为正在使用什么,正在使用的 Expect 库都不包含这两个函数。因此,您需要跟踪实际加载了哪个期望库,然后检查函数是否在其中(它们不是,但您应该检查定义了什么)。

找到库后,您可以使用 nm -g libexpect.so 来查看定义的符号。我希望您不会在定义的符号列表中看到 exp_spawnlexp_expectl

然后您需要找出您拥有的库的版本,并决定是否升级等。

我假设您引用的名称确实拼写正确。

It means that regardless of what you thought was being used, the expect library being used does not contain those two functions. So, you need to track down which expect library is actually loaded, and then check whether the functions are in it (they aren't, but you should check to see what is defined).

Once you've found your library, you can use nm -g libexpect.so to see the symbols defined. I would expect that you will not see exp_spawnl or exp_expectl in the list of defined symbols.

Then you need to find out which version of the library you do have, and decide whether to upgrade, etc.

I am assuming that the names you quote are indeed spelled correctly.

喜爱皱眉﹌ 2024-10-16 03:41:14

Expect头文件是否安装在/usr/include中?

我认为未定义的引用错误来自链接器而不是编译器。库安装到哪个目录? 链接它

尝试使用-L/path/to/lib -lexpect

选项

Is the expect header file installed in /usr/include?

I think the undefined reference error comes from the linker and not the compiler. What directory is the library installed to? Try to link against it using the

-L/path/to/lib -lexpect

option

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