如何在Windows中使用Linux lib,例如timeval

发布于 2024-07-19 07:56:16 字数 193 浏览 5 评论 0原文

如何在Windows中使用Linux lib,例如timeval 我已经安装了 cygwin 和 dev c++ 我不喜欢在 cygwin 中编译 在 dev c++ 下编译总是出错 `gettimeofday' 未声明(首先使用此函数)

不幸的是,我没有足够的硬盘空间来安装 Linux 或任何虚拟机,

非常感谢

how to use Linux lib such as timeval in windows
I have installed cygwin and dev c++
I don't like compliling in cygwin
compliling under dev c++ always erro like
`gettimeofday' undeclared (first use this function)

unfortunately, I don't have enough harddisk space to install a linux or any vitual machine

thanks a lot

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

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

发布评论

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

评论(2

路还长,别太狂 2024-07-26 07:56:16

当然,您不能立即在 Windows 中使用 Linux 代码。

但您似乎正在尝试使用 Cygwin 来执行此操作,它应该支持 Linux/POSIX API。

如果您遇到的错误是编译时(而不是链接器)错误,则您可能缺少正确的头文件:

   #include <sys/time.h>

这些文件记录在 gettimeofday()手册页

You can't use Linux code straight away in Windows, of course.

But it seems you're trying to do this using Cygwin, which should support the Linux/POSIX APIs.

If the error you're getting is a compile-time (and not linker) error, you probably are missing the proper header file:

   #include <sys/time.h>

These are documented on gettimeofday()'s man page.

旧情别恋 2024-07-26 07:56:16

毕竟
看来我们不能在windows中直接使用linux lib
我的 cygwin 遇到了各种各样的问题
最后
我安装了 vmware,一个虚拟的 Linux 机器并完成了
这可能不是一种明智的方法,但却是一种实用的方法

after all
it seems that we cann't use linux lib directly in windows
my cygwin sugffers from all kinds of problems
finally
I install vmware, a vitual linux machine and done that
which may be not a wise way but a practical one

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