我正在尝试在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没有问题