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
a2964318
Commit
a2964318
authored
Feb 24, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --core-only and --with-asan configure options
parent
a7917170
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
configure
configure
+14
-0
No files found.
configure
View file @
a2964318
...
@@ -73,6 +73,8 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
...
@@ -73,6 +73,8 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--no-io build without I/O module
--no-io build without I/O module
--no-python build without python binding
--no-python build without python binding
--no-summary do not print configuration before building
--no-summary do not print configuration before building
--core-only sets no-examples, no-opencl, no-openssl,
no-tools, no-python, and no-io
Testing:
Testing:
--with-asio use ASIO multiplexer in unit tests
--with-asio use ASIO multiplexer in unit tests
...
@@ -86,6 +88,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
...
@@ -86,6 +88,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
- DEBUG
- DEBUG
- 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-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):
...
@@ -242,6 +245,9 @@ while [ $# -ne 0 ]; do
...
@@ -242,6 +245,9 @@ while [ $# -ne 0 ]; do
--with-address-sanitizer
)
--with-address-sanitizer
)
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
;;
;;
--with-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
;;
;;
...
@@ -397,6 +403,14 @@ while [ $# -ne 0 ]; do
...
@@ -397,6 +403,14 @@ while [ $# -ne 0 ]; do
--no-summary
)
--no-summary
)
append_cache_entry CAF_NO_SUMMARY BOOL
yes
append_cache_entry CAF_NO_SUMMARY BOOL
yes
;;
;;
--core-only
)
append_cache_entry CAF_NO_TOOLS BOOL
yes
append_cache_entry CAF_NO_IO BOOL
yes
append_cache_entry CAF_NO_PYTHON BOOL
yes
append_cache_entry CAF_NO_EXAMPLES BOOL
yes
append_cache_entry CAF_NO_OPENCL BOOL
yes
append_cache_entry CAF_NO_OPENSSL BOOL
yes
;;
*
)
*
)
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
exit
1
exit
1
...
...
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