gpt4 book ai didi

cmake - CMockery 编译未知类型名称 "jmp_buf"

转载 作者:行者123 更新时间:2023-12-04 02:49:36 27 4
gpt4 key购买 nike

我正在尝试将单元测试框架 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)

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

最佳答案

根据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>

关于cmake - CMockery 编译未知类型名称 "jmp_buf",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55614090/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com