Commit 60ed2f7f authored by Dominik Charousset's avatar Dominik Charousset

Nitpicks regarding naming and types for configure

parent 63315132
...@@ -76,8 +76,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]... ...@@ -76,8 +76,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
- INFO - INFO
- DEBUG - DEBUG
- TRACE - TRACE
(implicitly sets --enable-debug) --with-address-sanitizer build with address sanitizer if available
--enable-address-sanitizer build with Clang's address sanitizer
Influential Environment Variables (only on first invocation): Influential Environment Variables (only on first invocation):
CXX C++ compiler command CXX C++ compiler command
...@@ -217,6 +216,10 @@ while [ $# -ne 0 ]; do ...@@ -217,6 +216,10 @@ while [ $# -ne 0 ]; do
append_cache_entry CAF_ENABLE_RUNTIME_CHECKS BOOL yes append_cache_entry CAF_ENABLE_RUNTIME_CHECKS BOOL yes
;; ;;
--enable-address-sanitizer) --enable-address-sanitizer)
echo "*** warning: --enable-address-sanitizer is deprecated, please use --with-address-sanitizer instead"
append_cache_entry ENABLE_ADDRESS_SANITIZER BOOL yes
;;
--with-address-sanitizer)
append_cache_entry ENABLE_ADDRESS_SANITIZER BOOL yes append_cache_entry ENABLE_ADDRESS_SANITIZER BOOL yes
;; ;;
--no-memory-management) --no-memory-management)
...@@ -284,28 +287,28 @@ while [ $# -ne 0 ]; do ...@@ -284,28 +287,28 @@ while [ $# -ne 0 ]; do
dualbuild=1 dualbuild=1
;; ;;
--no-examples) --no-examples)
append_cache_entry CAF_NO_EXAMPLES STRING yes append_cache_entry CAF_NO_EXAMPLES BOOL yes
;; ;;
--no-qt-examples) --no-qt-examples)
append_cache_entry CAF_NO_QT_EXAMPLES STRING yes append_cache_entry CAF_NO_QT_EXAMPLES BOOL yes
;; ;;
--no-protobuf-examples) --no-protobuf-examples)
append_cache_entry CAF_NO_PROTOBUF_EXAMPLES STRING yes append_cache_entry CAF_NO_PROTOBUF_EXAMPLES BOOL yes
;; ;;
--no-curl-examples) --no-curl-examples)
append_cache_entry CAF_NO_CURL_EXAMPLES STRING yes append_cache_entry CAF_NO_CURL_EXAMPLES BOOL yes
;; ;;
--no-unit-tests) --no-unit-tests)
append_cache_entry CAF_NO_UNIT_TESTS STRING yes append_cache_entry CAF_NO_UNIT_TESTS BOOL yes
;; ;;
--no-opencl) --no-opencl)
append_cache_entry CAF_NO_OPENCL STRING yes append_cache_entry CAF_NO_OPENCL BOOL yes
;; ;;
--build-static) --build-static)
append_cache_entry CAF_BUILD_STATIC STRING yes append_cache_entry CAF_BUILD_STATIC BOOL yes
;; ;;
--build-static-only) --build-static-only)
append_cache_entry CAF_BUILD_STATIC_ONLY STRING yes append_cache_entry CAF_BUILD_STATIC_ONLY BOOL yes
;; ;;
--with-javac=*) --with-javac=*)
append_cache_entry CAF_JAVA_COMPILER FILEPATH "$optarg" append_cache_entry CAF_JAVA_COMPILER FILEPATH "$optarg"
......
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