15

My intent is to use Clang as a replacement for Valgrind on Windows to find buffer overflows, dynamic memory misuse etc. in C/C++ programs that I've written. I have successfully built Clang following the instructions provided here.

I attempted to compile a simple C program with the -faddress-sanitizer option (as specified here) and the following the error is thrown -

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)

Why is clang (as I understand it) invoking GCC? Of course GCC does not support the -faddress-sanitizer option.

I am really excited at the possibility of using this as I've been trying to find a good (free) substitute for Valgrind for a while. Can someone please help?

4

2 に答える 2

8

グーグルでこのページにたどり着きました。

引用すると、

AddressSanitizer は以下でサポートされています

  • Linux x86_64 (Ubuntu 10.04 でテスト済み)。
  • MacOS 10.6 および 10.7 (i386/x86_64)。

Linux i386/ARM のサポートが進行中です (動作する可能性がありますが、保証もされていません)。


交換の話題について、Dr.Memoryを見ました

于 2012-08-04T06:38:06.143 に答える