Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
f620ff40
Commit
f620ff40
authored
6 years ago
by
Jö Fahlke
Browse files
Options
Downloads
Patches
Plain Diff
Don't use cmake VERSION_GREATER_EQUAL comparison
This is to appease cmake 3.5.1 on Ubuntu 16.04
parent
3bd5a4ca
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!591
Don't accept Vc versions <1.4.1 with Clang versions >=7
Pipeline
#15230
passed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/DuneCommonMacros.cmake
+1
-1
1 addition, 1 deletion
cmake/modules/DuneCommonMacros.cmake
with
1 addition
and
1 deletion
cmake/modules/DuneCommonMacros.cmake
+
1
−
1
View file @
f620ff40
...
...
@@ -38,7 +38,7 @@ find_package(TBB OPTIONAL_COMPONENTS cpf allocator)
# try to find the Vc library
set
(
MINIMUM_VC_VERSION
)
if
((
CMAKE_CXX_COMPILER_ID STREQUAL Clang
)
AND
(
CMAKE_CXX_COMPILER_VERSION VERSION_
GREATER_EQUAL
7
))
(
NOT
CMAKE_CXX_COMPILER_VERSION VERSION_
LESS
7
))
message
(
"Raising minimum acceptable Vc version to 1.4.1 due to use of Clang 7 (or later), see https://gitlab.dune-project.org/core/dune-common/issues/132"
)
set
(
MINIMUM_VC_VERSION 1.4.1
)
endif
()
...
...
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