Add descriptions for WITH_ASAN and WITH_UBSAN

Reviewed by:	jrtc27
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D32773
This commit is contained in:
Ed Maste 2021-11-01 09:03:14 -04:00
parent 7585c5db25
commit 065ef8f783
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Build the base system with Address Sanitizer (ASan) to detect
memory corruption bugs such as buffer overflows or use-after-free.
Requires that Clang be used as the base system compiler
and that the runtime support library is available.

View File

@ -0,0 +1,4 @@
Build the base system with Undefined Behavior Sanitizer (UBSan) to detect
various kinds of undefined behavior at runtime.
Requires that Clang be used as the base system compiler
and that the runtime support library is available