Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Merge requests
!51
Cmake sanitizer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Cmake sanitizer
cmake-sanitizer
into
master
Overview
0
Commits
2
Pipelines
3
Changes
3
Merged
Tomáš Pecka
requested to merge
cmake-sanitizer
into
master
6 years ago
Overview
0
Commits
2
Pipelines
3
Changes
3
Expand
support for sanitizer
small change in CI conf (switch between images for compat/push builds easily if needed)
0
0
Merge request reports
Compare
master
version 3
68e71e8b
6 years ago
version 2
68e71e8b
6 years ago
version 1
481d7343
6 years ago
master (base)
and
latest version
latest version
bd88aa14
2 commits,
6 years ago
version 3
68e71e8b
2 commits,
6 years ago
version 2
68e71e8b
2 commits,
6 years ago
version 1
481d7343
2 commits,
6 years ago
3 files
+
51
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
CMake/CMakeLists_root.txt
+
3
−
0
Options
@@ -53,6 +53,9 @@ endif ()
# Flags according to Debug/Release decision
# - CMake uses -g on Debug implicitly
# - fPIC for libraries will be enabled explicitly
# - add sanitizer? -DSANITIZE=<sanitizer>
include(sanitizer)
set(ALIB_BUILD_FLAGS_COMMON -Wall -pedantic -pipe -Wextra -Werror -Wshadow -Wpointer-arith -Wcast-qual -Wdelete-non-virtual-dtor -Wredundant-decls)
set(ALIB_BUILD_FLAGS_DEBUG ${{ALIB_BUILD_FLAGS_COMMON}} -Og)
set(ALIB_BUILD_FLAGS_RELEASE ${{ALIB_BUILD_FLAGS_COMMON}} -O3)
Loading