summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-27 12:51:45 -0700
committerBen Smith <binji@chromium.org>2016-05-02 15:33:51 -0700
commit3a91692673af5181ccd08497d6a99141f90003a8 (patch)
tree24c2127a29f8e2b5c4991c8eb707ea1ca2833b3e /README.md
parent30e5f6f6b572bb8d522849f5ff93ff6f6b01f2eb (diff)
downloadwabt-3a91692673af5181ccd08497d6a99141f90003a8.tar.gz
wabt-3a91692673af5181ccd08497d6a99141f90003a8.tar.bz2
wabt-3a91692673af5181ccd08497d6a99141f90003a8.zip
ubsan build, need to fix one bug
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 9 insertions, 6 deletions
diff --git a/README.md b/README.md
index b45fc16d..416acf9c 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,8 @@ configuration.
- compilers: `gcc`, `clang`, `gcc-i686`, `gcc-fuzz`
- build types: `debug`, `release`
- - configurations: empty, `asan`, `msan`, `lsan`, `no-re2c-bison`, `no-tests`
+ - configurations: empty, `asan`, `msan`, `lsan`, `ubsan`, `no-re2c-bison`,
+ `no-tests`
They are combined with dashes, for example:
@@ -374,14 +375,16 @@ append the sanitizer name to the target:
$ make clang-debug-asan
$ make clang-debug-msan
$ make clang-debug-lsan
+$ make clang-debug-ubsan
```
There are configurations for the Address Sanitizer (ASAN), Memory Sanitizer
-(MSAN) and Leak Sanitizer (LSAN). You can read about the behaviors of the
-sanitizers in the link above, but essentially the Address Sanitizer finds
-invalid memory accesses (use after free, access out-of-bounds, etc.), Memory
-Sanitizer finds uses of uninitialized memory, and the Leak Sanitizer finds
-memory leaks.
+(MSAN), Leak Sanitizer (LSAN) and Undefine Behavior Sanitizer (UBSAN). You can
+read about the behaviors of the sanitizers in the link above, but essentially
+the Address Sanitizer finds invalid memory accesses (use after free, access
+out-of-bounds, etc.), Memory Sanitizer finds uses of uninitialized memory,
+the Leak Sanitizer finds memory leaks, and the Undefined Behavior Sanitizer
+finds undefined behavior (surprise!).
Typically, you'll just want to run all the tests for a given sanitizer: