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
dc7e3f4f
Commit
dc7e3f4f
authored
Mar 15, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into topic/actor-system
parents
217c2f50
5097f69c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
3 deletions
+11
-3
CMakeLists.txt
CMakeLists.txt
+4
-0
README.md
README.md
+2
-2
cmake/jenkins.cmake
cmake/jenkins.cmake
+1
-1
configure
configure
+4
-0
No files found.
CMakeLists.txt
View file @
dc7e3f4f
...
...
@@ -115,6 +115,10 @@ endif()
if
(
CAF_CXX_WARNINGS_AS_ERRORS
)
set
(
EXTRA_FLAGS
"
${
EXTRA_FLAGS
}
-Werror"
)
endif
()
# set compiler flags for GCOV if requested
if
(
CAF_ENABLE_GCOV
)
set
(
EXTRA_FLAGS
"
${
EXTRA_FLAGS
}
-fprofile-arcs -ftest-coverage"
)
endif
()
# enable a ton of warnings if --more-clang-warnings is used
if
(
CAF_MORE_WARNINGS
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
MATCHES
"Clang"
)
...
...
README.md
View file @
dc7e3f4f
...
...
@@ -7,7 +7,7 @@ network transparent messaging, and more.
[
![Gitter
][
gitter-badge
]
]
(https://gitter.im/actor-framework/chat)
[
![Jenkins
][
jenkins-badge
]
]
(http
://mobi39.cp
t.haw-hamburg.de/view/CAF%20Dashboard)
(http
s://jenkins.ine
t.haw-hamburg.de/view/CAF%20Dashboard)
[
![Coverity
][
coverity-badge
]
]
(https://scan.coverity.com/projects/5555)
[
![In Progress
][
in-progress-badge
]
]
...
...
@@ -193,7 +193,7 @@ https://software.opensuse.org/download.html?project=devel%3Alibraries%3Acaf&pack
https://software.opensuse.org/download.html?project=devel%3Alibraries%3Acaf%3Anightly&package=caf-devel
[
jenkins-badge
]:
http
://mobi39.cp
t.haw-hamburg.de/buildStatus/icon?job=CAF/master%20branch
http
s://jenkins.ine
t.haw-hamburg.de/buildStatus/icon?job=CAF/master%20branch
[
coverity-badge
]:
https://scan.coverity.com/projects/5555/badge.svg?flat=1
...
...
cmake/jenkins.cmake
View file @
dc7e3f4f
set
(
LABEL_EXPR
"$ENV{label_exp}"
)
if
(
"
${
LABEL_EXPR
}
"
MATCHES
"gcc"
)
if
(
"
${
LABEL_EXPR
}
"
MATCHES
"gcc"
OR
"
${
LABEL_EXPR
}
"
MATCHES
"gcovr"
)
message
(
STATUS
"Set CXX to g++ based on label_expr content"
)
set
(
CMAKE_C_COMPILER
"gcc"
CACHE PATH
"C compiler option"
)
set
(
CMAKE_CXX_COMPILER
"g++"
CACHE PATH
"C++ compiler option"
)
...
...
configure
View file @
dc7e3f4f
...
...
@@ -79,6 +79,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
- DEBUG
- TRACE
--with-address-sanitizer build with address sanitizer if available
--with-gcov build with gcov coverage enabled
Influential Environment Variables (only on first invocation):
CXX C++ compiler command
...
...
@@ -222,6 +223,9 @@ while [ $# -ne 0 ]; do
--with-address-sanitizer
)
append_cache_entry CAF_ENABLE_ADDRESS_SANITIZER BOOL
yes
;;
--with-gcov
)
append_cache_entry CAF_ENABLE_GCOV BOOL
yes
;;
--no-memory-management
)
append_cache_entry CAF_NO_MEM_MANAGEMENT BOOL
yes
;;
...
...
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