Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
Spiros Tsalikis
VTK
Commits
64f7bb32
Commit
64f7bb32
authored
9 years ago
by
Sean McBride
Browse files
Options
Downloads
Patches
Plain Diff
Tweaked minimum clang versions; added minimum requirements notes
parent
7d4bccc9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+6
-6
6 additions, 6 deletions
CMakeLists.txt
README.md
+17
-0
17 additions, 0 deletions
README.md
with
23 additions
and
6 deletions
CMakeLists.txt
+
6
−
6
View file @
64f7bb32
...
...
@@ -321,17 +321,17 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND
endif
()
#-----------------------------------------------------------------------------
# Minimum compiler version check: LLVM Clang >=
2.8
# Minimum compiler version check: LLVM Clang >=
3.0
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"Clang"
AND
CMAKE_CXX_COMPILER_VERSION VERSION_LESS
2.8
)
message
(
FATAL_ERROR
"LLVM Clang
2.8
or later is required."
)
CMAKE_CXX_COMPILER_VERSION VERSION_LESS
3.0
)
message
(
FATAL_ERROR
"LLVM Clang
3.0
or later is required."
)
endif
()
#-----------------------------------------------------------------------------
# Minimum compiler version check: Apple Clang >=
2
.0 (Xcode 4.
0.x
)
# Minimum compiler version check: Apple Clang >=
3
.0 (Xcode 4.
2
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"AppleClang"
AND
CMAKE_CXX_COMPILER_VERSION VERSION_LESS
2
.0
)
message
(
FATAL_ERROR
"Apple Clang
2
.0 or later is required."
)
CMAKE_CXX_COMPILER_VERSION VERSION_LESS
3
.0
)
message
(
FATAL_ERROR
"Apple Clang
3
.0 or later is required."
)
endif
()
#-----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
README.md
+
17
−
0
View file @
64f7bb32
...
...
@@ -57,6 +57,23 @@ If you have found a bug:
[
VTK Issue Tracker
]:
http://www.vtk.org/Bug
Requirements
============
In general VTK tries to be as portable as possible; the specific configurations below are known to work and tested.
VTK supports the following compilers:
1.
Microsoft Visual Studio 2008 (aka MSVC++ 9.0) or newer
2.
gcc 4.2 or newer
3.
Apple gcc 4.2 (from Xcode 3.1.4 or newer)
4.
Clang 3.0 or newer
5.
Apple Clang 3.0 (from Xcode 4.2) or newer
VTK supports the following operating systems:
1.
Windows Vista or newer
2.
Mac OS X 10.6.8 or newer
3.
Linux (ex: Ubuntu 12.04 or newer, Debian 4 or newer)
Contributing
============
...
...
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