我正在尝试在 macOS 10.14.6 和 CLion 2019.2.5 上编译一个简单的模糊测试示例
#include <stdint.h>
#include <stddef.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
if (size > 0 && data[0] == 'H')
if (size > 1 && data[1] == 'I')
if (size > 2 && data[2] == '!')
__builtin_trap();
return 0;
}
这也显示在这里https://llvm.org/docs/LibFuzzer.html#toy-example如果已经设置了我的 CMakeLists.txt 一切正常他在此错误发生后链接 CXX 可执行文件
Undefined symbols for architecture x86_64:
"_main", referenced from:
implicit entry/start for main executable
ld: symbol(s) not found for architecture x86_64
当我通过终端编译时发生同样的错误我尝试使用带有 Ubuntu 18.04 的 Virtualbox - 相同的 Clion 版本和 Cmakelist 没有问题