3

我正在尝试将单元测试框架 cMockery 添加到我的 C 项目中。我已将 cMockery 下载并安装到全局包含路径中。但是#include <cmockery.h>在我的源文件中之后,cmake 抛出了以下问题。如果我也使用它,似乎会抛出同样的东西cMocka。我错过了一些包裹吗?

编辑:谷歌搜索"/usr/include/google/cmockery.h:365:8: error: unknown type name ‘jmp_buf’"正好返回0 个结果(现在 1 个结果指向这个问题)。以及搜索unknown type name 'jmp_buf'只解释它是什么。不是如何修复它或为什么它会在 cmockery 中发生。

/usr/bin/cmake --build /home/.../data-structures-c/cmake-build-debug --target data_structures_c -- -j 3
Scanning dependencies of target data_structures_c
[ 50%] Building C object CMakeFiles/data_structures_c.dir/main.c.o
In file included from /home/.../data-structures-c/main.c:3:
/usr/include/google/cmockery.h:365:8: error: unknown type name ‘jmp_buf’
 extern jmp_buf global_expect_assert_env;
        ^~~~~~~
make[3]: *** [CMakeFiles/data_structures_c.dir/build.make:63: CMakeFiles/data_structures_c.dir/main.c.o] Error 1
make[2]: *** [CMakeFiles/Makefile2:73: CMakeFiles/data_structures_c.dir/all] Error 2
make[1]: *** [CMakeFiles/Makefile2:85: CMakeFiles/data_structures_c.dir/rule] Error 2
make: *** [Makefile:118: data_structures_c] Error 2

操作系统:Manjaro Archlinux

Cmake、make、gcc、g++ 全部安装。

CMakeList.txt的也很标准,只有一个 c 源代码

cmake_minimum_required(VERSION 3.12)
project(data_structures_c C)
set(CMAKE_C_STANDARD 99)
add_executable(data_structures_c main.c)

我想知道如何解决这个问题以编译我的代码。

4

1 回答 1

5

根据google/cmockery.h头文件开头的评论:

/*
 * These headers or their equivalents should be included prior to including
 * this header file.
 *
 * #include <stdarg.h>
 * #include <stddef.h>
 * #include <setjmp.h>
 *
 * This allows test applications to use custom definitions of C standard
 * library functions and types.
 */

包含此标头之前,应包含以下标头:

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>

只有在这些包括之后才允许

#include <google/cmockery.h>
于 2019-04-11T07:59:09.380 回答