我正在尝试使用自动工具将 Google 测试框架添加到我的应用程序中。但是我遇到了一些奇怪的错误。在configure.ac中:
AC_CHECK_HEADER([gtest/gtest.h], [AC_DEFINE([HAVE_GTEST_H], 1)])
但在日志中我得到:
...
checking for limits.h... yes
checking gtest/gtest.h usability... no
checking gtest/gtest.h presence... no
checking for gtest/gtest.h... no
配置日志:
configure:3276: checking gtest/gtest.h presence
configure:3276: gcc -E conftest.c
In file included from conftest.c:19:0:
/usr/include/gtest/gtest.h:54:18: fatal error: limits: No such file or directory
compilation terminated.
两个文件都存在。据我所知 /usr/include 是默认包含。