Commit 9294a28f authored by Dominik Charousset's avatar Dominik Charousset

Add --enable-asan alias

parent 062f96cd
...@@ -89,6 +89,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]... ...@@ -89,6 +89,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
- TRACE - TRACE
--with-address-sanitizer build with address sanitizer if available --with-address-sanitizer build with address sanitizer if available
--with-asan alias for --with-address-sanitier --with-asan alias for --with-address-sanitier
--enable-asan alias for --with-address-sanitier
--with-gcov build with gcov coverage enabled --with-gcov build with gcov coverage enabled
Influential Environment Variables (only on first invocation): Influential Environment Variables (only on first invocation):
...@@ -248,6 +249,9 @@ while [ $# -ne 0 ]; do ...@@ -248,6 +249,9 @@ while [ $# -ne 0 ]; do
--with-asan) --with-asan)
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL yes append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL yes
;; ;;
--enable-asan)
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL yes
;;
--with-gcov) --with-gcov)
append_cache_entry CAF_ENABLE_GCOV BOOL yes append_cache_entry CAF_ENABLE_GCOV BOOL yes
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment