Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
19e9e8cf
Commit
19e9e8cf
authored
1 year ago
by
Nat Goodspeed
Browse files
Options
Downloads
Patches
Plain Diff
SL-18837: Try to silence cascade of Boost.Bind warning messages.
parent
b5e1484c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/cmake/00-Common.cmake
+5
-0
5 additions, 0 deletions
indra/cmake/00-Common.cmake
with
5 additions
and
0 deletions
indra/cmake/00-Common.cmake
+
5
−
0
View file @
19e9e8cf
...
@@ -26,6 +26,11 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} $ENV{LL_BUILD}")
...
@@ -26,6 +26,11 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} $ENV{LL_BUILD}")
# Portable compilation flags.
# Portable compilation flags.
add_compile_definitions
(
ADDRESS_SIZE=
${
ADDRESS_SIZE
}
)
add_compile_definitions
(
ADDRESS_SIZE=
${
ADDRESS_SIZE
}
)
# Because older versions of Boost.Bind dumped placeholders _1, _2 et al. into
# the global namespace, Boost now requires either BOOST_BIND_NO_PLACEHOLDERS
# to avoid that or BOOST_BIND_GLOBAL_PLACEHOLDERS to state that we require it
# -- which we do. Without one or the other, we get a ton of Boost warnings.
add_compile_definitions
(
BOOST_BIND_GLOBAL_PLACEHOLDERS
)
# Configure crash reporting
# Configure crash reporting
set
(
RELEASE_CRASH_REPORTING OFF CACHE BOOL
"Enable use of crash reporting in release builds"
)
set
(
RELEASE_CRASH_REPORTING OFF CACHE BOOL
"Enable use of crash reporting in release builds"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment