<div dir="ltr">Hi Jeffrey, <div><br></div><div>I'm glad to hear that.</div><div><ad></div><div>If you liked the sanitizers, you may also like libFuzzer (<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_docs_LibFuzzer.html&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=CnzuN65ENJ1H9py9XLiRvC_UQz6u3oG6GUNn7_wosSM&m=YaNx5AkEZI_O-QeeKupeVHsoiBod4kkd3WBi5dTVDwk&s=dRoq8V7AyEIw_RHxCVXNBuEL6dJCBMzUcpymu_Sx8LE&e=">llvm.org/docs/LibFuzzer.html</a>).</div><div>Also, did you try msan? </div><div></ad></div><div><br></div><div>--kcc </div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 15, 2015 at 9:58 PM, Jeffrey Walton <span dir="ltr"><<a href="mailto:noloader@gmail.com" target="_blank">noloader@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Everyone,<br>
<br>
Great work on the sanitizers. I can't express how useful they are.<br>
<br>
The Crypto++ project just promoted them to first class makefile<br>
targets for internal testing.<br>
<br>
For other who want to do the same, one can perform similar to the<br>
following if using GNU Make (sorry, the Posix Make folks are out of<br>
luck):<br>
<br>
  # Undefined Behavior Sanitzier (Clang and G++)<br>
  ifeq ($(findstring ubsan,$(MAKECMDGOALS)),ubsan)<br>
  CXXFLAGS += -fsanitize=undefined<br>
  endif # UBsan<br>
<br>
  # Address Sanitzier (Clang and G++)<br>
  ifeq ($(findstring asan,$(MAKECMDGOALS)),asan)<br>
  CXXFLAGS += -fsanitize=address<br>
  endif # Asan<br>
<br>
Then, we provide a recipe for them:<br>
<br>
  asan ubsan: libcryptopp.a cryptest.exe<br>
<br>
Jeff<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br></div>