Imagine, that you have file test.c
with your C code and you want build it with ASAN
RUN:
clang -g -fsanitize=address test.c -o bin
run bin
<-- this is your binary with ASAN
clang --analyze -Xanalyzer -analyzer-output=html -o dir_output test.c
in dir_ouput will be report .html
Пусть у вас есть файл с исходным кодом test.c
, который вы хотите собрать с ASAN
Запустите:
clang -g -fsanitize=address test.c -o bin
run bin
<-- это ваш бинарь с ASAN
clang --analyze -Xanalyzer -analyzer-output=html -o dir_output test.c
В папке dir_ouput будет ваш отчет .html