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
c584b10b
Commit
c584b10b
authored
May 07, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add option to set CAF_ENABLE_TYPE_ID_CHECKS
parent
7edfed6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
configure
configure
+10
-1
No files found.
configure
View file @
c584b10b
...
...
@@ -45,6 +45,10 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--warnings-as-errors build with '-Werror'
--with-ccache use ccache to improve build performance
Opt-in Features:
--enable-type-id-checks raise errors when sending types without type IDs
Optional Targets:
--with-qt-examples build Qt example(s)
--with-protobuf-examples build Google Protobuf example(s)
...
...
@@ -85,7 +89,8 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
Convenience options:
--dev-mode sets --build-type=debug, --no-examples,
--no-tools, --with-runtime-checks,
--log-level=trace, and --enable-asan
--log-level=trace, --enable-asan,
and --enable-type-id-checks
Influential Environment Variables (only on first invocation):
CXX C++ compiler command
...
...
@@ -247,6 +252,9 @@ while [ $# -ne 0 ]; do
--enable-asan
)
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
;;
--enable-type-id-checks
)
append_cache_entry CAF_ENABLE_TYPE_ID_CHECKS BOOL
yes
;;
--with-gcov
)
append_cache_entry CAF_ENABLE_GCOV BOOL
yes
;;
...
...
@@ -380,6 +388,7 @@ while [ $# -ne 0 ]; do
append_cache_entry CAF_LOG_LEVEL STRING TRACE
append_cache_entry CAF_ENABLE_RUNTIME_CHECKS BOOL
yes
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
append_cache_entry CAF_ENABLE_TYPE_ID_CHECKS BOOL
yes
;;
*
)
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
...
...
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