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
3e51f9b8
Commit
3e51f9b8
authored
Sep 22, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build on Clang 3.4 / Linux
parent
f14a6e3a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CMakeLists.txt
CMakeLists.txt
+6
-1
libcaf_riac
libcaf_riac
+1
-1
No files found.
CMakeLists.txt
View file @
3e51f9b8
...
@@ -106,9 +106,14 @@ if(NOT WIN32 AND NOT CAF_NO_COMPILER_CHECK)
...
@@ -106,9 +106,14 @@ if(NOT WIN32 AND NOT CAF_NO_COMPILER_CHECK)
endif
()
endif
()
# set optional build flags
# set optional build flags
set
(
EXTRA_FLAGS
""
)
set
(
EXTRA_FLAGS
""
)
# increase max. template depth on GCC and Clang
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
MATCHES
"Clang"
OR
"
${
CMAKE_CXX_COMPILER_ID
}
"
MATCHES
"GNU"
)
set
(
EXTRA_FLAGS
"-ftemplate-depth=512"
)
endif
()
# add "-Werror" flag if --pedantic-build is used
# add "-Werror" flag if --pedantic-build is used
if
(
CAF_CXX_WARNINGS_AS_ERRORS
)
if
(
CAF_CXX_WARNINGS_AS_ERRORS
)
set
(
EXTRA_FLAGS
"-Werror"
)
set
(
EXTRA_FLAGS
"
${
EXTRA_FLAGS
}
-Werror"
)
endif
()
endif
()
# enable a ton of warnings if --more-clang-warnings is used
# enable a ton of warnings if --more-clang-warnings is used
if
(
CAF_MORE_WARNINGS
)
if
(
CAF_MORE_WARNINGS
)
...
...
libcaf_riac
@
2963ffe3
Subproject commit
e66010a61cdceeef662dd701afd5a8cda411e320
Subproject commit
2963ffe32e2f94f28ecaa609274e66f69bc06ac2
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