c - 如何在 Windows 上编译 C 完美最小哈希库?

标签 c windows makefile configure

我已经安装了 mingw 和 Msys。

我已经运行 bash configure 来创建 make 文件。

但是当我运行 make 时,我得到以下输出

E:\cmph-1.1>make
make  all-recursive
make[1]: Entering directory `/e/cmph-1.1'
Making all in src
make[2]: Entering directory `/e/cmph-1.1/src'
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c  -DDLL_EXPORT -DPIC -o .libs/hash.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1
mv -f .deps/hash.Tpo .deps/hash.Plo
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c -o jenkins_hash.lo jenkins_hash.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c  -DDLL_EXPORT -DPIC -o .libs/jenkins_hash.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -o jenkins_hash.o >/dev/null 2>&1
mv -f .deps/jenkins_hash.Tpo .deps/jenkins_hash.Plo
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c -o vstack.lo vstack.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c  -DDLL_EXPORT -DPIC -o .libs/vstack.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -o vstack.o >/dev/null 2>&1
mv -f .deps/vstack.Tpo .deps/vstack.Plo
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c -o vqueue.lo vqueue.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c  -DDLL_EXPORT -DPIC -o .libs/vqueue.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -o vqueue.o >/dev/null 2>&1
mv -f .deps/vqueue.Tpo .deps/vqueue.Plo
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c  -DDLL_EXPORT -DPIC -o .libs/graph.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o >/dev/null 2>&1
mv -f .deps/graph.Tpo .deps/graph.Plo
/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..     -Wall -Werror -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c -o cmph.lo cmph.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wall -Werror -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c  -DDLL_EXPORT -DPIC -o .libs/cmph.o
In file included from cmph.h:105:0,
                 from cmph.c:1:
cmph_time.h: In function 'elapsed_time_in_seconds':
cmph_time.h:23:19: error: storage size of 'e_time' isn't known
cmph_time.h:24:4: error: implicit declaration of function 'gettimeofday' [-Werror=implicit-function-declaration]
cmph_time.h:23:19: error: unused variable 'e_time' [-Werror=unused-variable]
cmph_time.h: In function 'elapsed_time_in_useconds':
cmph_time.h:34:19: error: storage size of 'e_time' isn't known
cmph_time.h:34:19: error: unused variable 'e_time' [-Werror=unused-variable]
cmph.c: In function 'count_nlfile_keys':
cmph.c:154:18: error: variable 'ptr' set but not used [-Werror=unused-but-set-variable]
cc1.exe: all warnings being treated as errors

我正在努力弄清楚我需要做什么才能使其编译。

最佳答案

如果您查看该头文件,您将在顶部附近看到此结构:

#ifdef WIN32
// include headers to use gettimeofday
#else
    #ifdef __GNUC__
    #include <sys/time.h>
    #include <sys/resource.h>
    #endif
#endif

看来您不会在后半部分结束,从那里您可以获得 gettimeofday()struct timeval 的声明。

我对 MinGW 不太熟悉 - 它定义了 WIN32 吗?如果是这样,您可能需要重新设计预处理器逻辑才能完成您想要的操作。作为引用,它在 cygwin 中运行良好。

关于c - 如何在 Windows 上编译 C 完美最小哈希库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9386214/

相关文章:

c++ - 如何将在 Linux 中从命令行编译的 C 程序导出到 IDE?

c - const static int 数组

c++ - 我应该如何管理 C 或 C++ 开源项目中的依赖项?

c - 如何使用 C 检索当前 Windows 用户登录?

c++ - 通过 C++ 更改我的动态 IP 地址

c - 初学者的 Makefile

C 浮点零比较

c - 如何在C中将字符串格式化为排队格式?

linux - 从 OSX 安装 SMB

file - WinAVR 和 native Windows 控制台应用程序