Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
60ed2f7f
Commit
60ed2f7f
authored
Dec 21, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nitpicks regarding naming and types for configure
parent
63315132
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
configure
configure
+13
-10
No files found.
configure
View file @
60ed2f7f
...
@@ -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
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment