我的意图是Clang
用作 Windows 上的替代品,以Valgrind
在我编写的 C/C++ 程序中查找缓冲区溢出、动态内存滥用等。我已经按照此处提供的说明成功构建了 Clang 。
我尝试使用 -faddress-sanitizer 选项(如此处指定)编译一个简单的 C 程序,然后抛出以下错误 -
gcc.exe: error: unrecognized command line option '-faddress-sanitizer'
Using built-in specs.
COLLECT_GCC=C:/MinGW/bin/gcc.exe
Target: mingw32
Configured with: ../gcc-4.7.0/configure --enable-languages=c,c++,ada,fortran,objc,obj- c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --disable-build-poststage1-with-cxx --enable-version-specific-runtime-libs --build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.7.0 (GCC)
clang: error: assembler (via gcc) command failed with exit code 1 (use -v to see invocation)
为什么clang(据我所知)调用GCC?当然 GCC 不支持 -faddress-sanitizer 选项。
我对使用它的可能性感到非常兴奋,因为一段时间以来我一直在努力寻找一个好的(免费)替代 Valgrind。有人可以帮忙吗?