如何在Windows中使用Linux lib,例如timeval
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,您不能立即在 Windows 中使用 Linux 代码。
但您似乎正在尝试使用 Cygwin 来执行此操作,它应该支持 Linux/POSIX API。
如果您遇到的错误是编译时(而不是链接器)错误,则您可能缺少正确的头文件:
这些文件记录在
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:
These are documented on
gettimeofday()
's man page.毕竟
看来我们不能在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