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