diff options
author | Ben Smith <binji@chromium.org> | 2016-03-27 12:51:45 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-05-02 15:33:51 -0700 |
commit | 3a91692673af5181ccd08497d6a99141f90003a8 (patch) | |
tree | 24c2127a29f8e2b5c4991c8eb707ea1ca2833b3e /README.md | |
parent | 30e5f6f6b572bb8d522849f5ff93ff6f6b01f2eb (diff) | |
download | wabt-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.md | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -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: |