Update VisIt to version 3.0.1 and fix on mac (#12396)
* Add option to disable QTDesigner plugin for qwt Qt designer shouldn't be necessary to build downstream GUI code. Currently `qwt^qt~tools` fails to build: (darwin clang@10.0.1) ``` compiling qwt_designer_plugin.cpp compiling qwt_designer_plotdialog.cpp moc qwt_designer_plugin.h moc qwt_designer_plotdialog.h rcc qwt_designer_plugin.qrc qwt_designer_plugin.h:23: Error: Undefined interface make[1]: *** [moc/moc_qwt_designer_plugin.cpp] Error 1 make[1]: *** Waiting for unfinished jobs.... qwt_designer_plugin.cpp:17:10: fatal error: 'QDesignerFormEditorInterface' file not found ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. make[1]: *** [obj/qwt_designer_plugin.o] Error 1 make: *** [sub-designer-make_default-ordered] Error 2 ``` * Update VTK for newer VisIt and compiler versions Several changes/enhancements to VTK package --- Add version 8.1.0 (default version for VisIt 3.x) --- Tweak VTK options for version 8 and VisIt: - only add mpi4py version option when mpi4py is enabled - Require object factory for downstream packages - Remove OpenGL preference for VTK 8 --- Combine +python3 into +python The spec for using python3 should just be `+python^python@3:`. --- Remove unused VTK cmake argument on newer version --- Patch for Python 3 fails on VTK 6.1 (needed for VisIt 2.x): ``` ==> Patch /rnsdhpc/code/spack/var/spack/repos/builtin/packages/vtk/python3.7-const-char.patch failed. ==> Error: ProcessError: Command exited with status 1: '/usr/bin/patch' '-s' '-p' '1' '-i' '/rnsdhpc/code/spack/var/spack/repos/builtin/packages/vtk/python3.7-const-char.patch' '-d' '.' ``` and as it happens, VisIt 2.13 is incompatible with Python 3 anyway. --- Fix compiler error: As spack's configuration warning says, double-quotes can cause trouble: ``` ==> [2019-07-29-11:47:55.269653] Warning: Quotes in command arguments can confuse scripts like configure. The following arguments may cause problems when executed: -DVTK_REQUIRED_OBJCXX_FLAGS="" Quotes aren't needed because spack doesn't use a shell. Consider removing them ``` They were being added to the compile line, causing clang to think it was asked to compile an empty file: ``` cd /private/var/folders/fy/x2xtwh1n7fn0_0q2kk29xkv9vvmbqb/T/s3j/spack-stage/spack-stage-3nk9bwe_/spack-build/Rendering/OpenGL && /rnsdhpc/code/spack/lib/spack/env/clang/clang++ -DVTK_IN_VTK -DvtkRenderingOpenGL_EXPORTS -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks -DGLX_GLXEXT_LEGACY -O2 -g -DNDEBUG -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -fPIC -fvisibility=hidden -fvisibility-inlines-hidden "" -o CMakeFiles/vtkRenderingOpenGL.dir/vtkCocoaGLView.mm.o -c /rnsdhpc/code/spack/var/spack/stage/vtk-6.1.0-b2mj276iz77fadisv2me365qe27t3gxt/spack-src/Rendering/OpenGL/vtkCocoaGLView.mm clang: error: no input files make[2]: *** [Rendering/OpenGL/CMakeFiles/vtkRenderingOpenGL.dir/vtkCocoaGLView.mm.o] Error 1 ``` * Modernize/PEP-8 visit package statements * Add new VisIt version and patches for building on Mac - VisIt's cmake assumes a 'vtk(tiff|jpeg|png)' *library* target exported by VTK, but VTK 8.1.x on my configuration seems to have these as header-only targets with library dependencies. - Explicitly add QT path to visit configure: Without this, somehow `${VISIT_QT_DIR}` was being set to empty, so that the build failed with `missing /bin/moc`. - VisIt assumes that if it isn't being built statically, QWT has been built as a mac Framework. QWT actually is built as a framework based on whether QT itself is. Error message: ``` -- Looking for QWT CMake Error at CMake/SetUpThirdParty.cmake:131 (MESSAGE): Include Directory for QWT (/rnsdhpc/code/spack/opt/spack/darwin-mojave-x86_64/clang-10.0.1-apple/qwt-6.1.3-bmfxirweplzhjoiil4rw632evkyteuwk/lib/qwt.framework/Versions/Current/Headers) does not exist. Call Stack (most recent call first): CMake/FindQwt.cmake:57 (SET_UP_THIRD_PARTY) CMakeLists.txt:1251 (INCLUDE) ```
This commit is contained in:
parent
ce15510566
commit
4b400d5032
6 changed files with 135 additions and 39 deletions
33
var/spack/repos/builtin/packages/qwt/no-designer.patch
Normal file
33
var/spack/repos/builtin/packages/qwt/no-designer.patch
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
--- qwt-6.1.3.orig/qwtconfig.pri 2016-06-13 03:14:23.000000000 -0400
|
||||||
|
+++ qwt-6.1.3/qwtconfig.pri 2019-03-29 19:06:22.000000000 -0400
|
||||||
|
@@ -42,7 +42,7 @@
|
||||||
|
# runtime environment of designer/creator.
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
-QWT_INSTALL_PLUGINS = $${QWT_INSTALL_PREFIX}/plugins/designer
|
||||||
|
+#QWT_INSTALL_PLUGINS = $${QWT_INSTALL_PREFIX}/plugins/designer
|
||||||
|
|
||||||
|
# linux distributors often organize the Qt installation
|
||||||
|
# their way and QT_INSTALL_PREFIX doesn't offer a good
|
||||||
|
@@ -118,7 +118,7 @@
|
||||||
|
# Otherwise you have to build it from the designer directory.
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
-QWT_CONFIG += QwtDesigner
|
||||||
|
+#QWT_CONFIG += QwtDesigner
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# Compile all Qwt classes into the designer plugin instead
|
||||||
|
@@ -132,9 +132,9 @@
|
||||||
|
# environment of the designer/creator.
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
-win32 {
|
||||||
|
- QWT_CONFIG += QwtDesignerSelfContained
|
||||||
|
-}
|
||||||
|
+#win32 {
|
||||||
|
+# QWT_CONFIG += QwtDesignerSelfContained
|
||||||
|
+#}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# If you want to auto build the examples, enable the line below
|
|
@ -19,7 +19,13 @@ class Qwt(QMakePackage):
|
||||||
version('6.1.3', '19d1f5fa5e22054d22ee3accc37c54ba')
|
version('6.1.3', '19d1f5fa5e22054d22ee3accc37c54ba')
|
||||||
version('5.2.2', '70d77e4008a6cc86763737f0f24726ca')
|
version('5.2.2', '70d77e4008a6cc86763737f0f24726ca')
|
||||||
|
|
||||||
|
variant('designer', default=False,
|
||||||
|
description="Build extensions to QT designer")
|
||||||
|
|
||||||
|
patch('no-designer.patch', when='~designer')
|
||||||
|
|
||||||
depends_on('qt+opengl')
|
depends_on('qt+opengl')
|
||||||
|
depends_on('qt+tools', when='+designer')
|
||||||
# Qwt 6.1.1 and older use a constant that was removed in Qt 5.4
|
# Qwt 6.1.1 and older use a constant that was removed in Qt 5.4
|
||||||
# https://bugs.launchpad.net/ubuntu/+source/qwt-qt5/+bug/1485213
|
# https://bugs.launchpad.net/ubuntu/+source/qwt-qt5/+bug/1485213
|
||||||
depends_on('qt@:5.3', when='@:6.1.1')
|
depends_on('qt@:5.3', when='@:6.1.1')
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
--- a/src/CMake/FindQwt.cmake 2019-02-15 18:31:27.000000000 -0500
|
||||||
|
+++ b/src/CMake/FindQwt.cmake 2019-08-11 09:18:38.000000000 -0400
|
||||||
|
@@ -51,7 +51,7 @@
|
||||||
|
include(${VISIT_SOURCE_DIR}/CMake/SetUpThirdParty.cmake)
|
||||||
|
|
||||||
|
if(APPLE)
|
||||||
|
- if(VISIT_STATIC)
|
||||||
|
+ if ("TRUE")
|
||||||
|
SET_UP_THIRD_PARTY(QWT lib include qwt)
|
||||||
|
else()
|
||||||
|
SET_UP_THIRD_PARTY(QWT lib lib/qwt.framework/Versions/Current/Headers qwt)
|
|
@ -10,8 +10,10 @@ class Visit(CMakePackage):
|
||||||
"""VisIt is an Open Source, interactive, scalable, visualization,
|
"""VisIt is an Open Source, interactive, scalable, visualization,
|
||||||
animation and analysis tool."""
|
animation and analysis tool."""
|
||||||
homepage = "https://wci.llnl.gov/simulation/computer-codes/visit/"
|
homepage = "https://wci.llnl.gov/simulation/computer-codes/visit/"
|
||||||
url = "http://portal.nersc.gov/project/visit/releases/2.10.1/visit2.10.1.tar.gz"
|
url = "https://portal.nersc.gov/project/visit/releases/3.0.1/visit3.0.1.tar.gz"
|
||||||
|
|
||||||
|
version('3.0.1', 'a506d4d83b8973829e68787d8d721199523ce7ec73e7594e93333c214c2c12bd')
|
||||||
|
version('2.13.3', 'cf0b3d2e39e1cd102dd886d3ef6da892733445e362fc28f24d9682012cccf2e5')
|
||||||
version('2.13.0', '716644b8e78a00ff82691619d4d1e7a914965b6535884890b667b97ba08d6a0f')
|
version('2.13.0', '716644b8e78a00ff82691619d4d1e7a914965b6535884890b667b97ba08d6a0f')
|
||||||
version('2.12.3', '2dd351a291ee3e79926bc00391ca89b202cfa4751331b0fdee1b960c7922161f')
|
version('2.12.3', '2dd351a291ee3e79926bc00391ca89b202cfa4751331b0fdee1b960c7922161f')
|
||||||
version('2.12.2', '355779b1dbf440cdd548526eecd77b60')
|
version('2.12.2', '355779b1dbf440cdd548526eecd77b60')
|
||||||
|
@ -20,61 +22,84 @@ class Visit(CMakePackage):
|
||||||
version('2.10.1', '3cbca162fdb0249f17c4456605c4211e')
|
version('2.10.1', '3cbca162fdb0249f17c4456605c4211e')
|
||||||
|
|
||||||
variant('gui', default=True, description='Enable VisIt\'s GUI')
|
variant('gui', default=True, description='Enable VisIt\'s GUI')
|
||||||
|
variant('adios2', default=False, description='Enable ADIOS2 file format')
|
||||||
variant('hdf5', default=True, description='Enable HDF5 file format')
|
variant('hdf5', default=True, description='Enable HDF5 file format')
|
||||||
variant('silo', default=True, description='Enable Silo file format')
|
variant('silo', default=True, description='Enable Silo file format')
|
||||||
variant('python', default=True, description='Enable Python support')
|
variant('python', default=True, description='Enable Python support')
|
||||||
variant('mpi', default=True, description='Enable parallel engine')
|
variant('mpi', default=True, description='Enable parallel engine')
|
||||||
|
|
||||||
|
patch('spack-changes.patch')
|
||||||
|
patch('nonframework-qwt.patch', when='^qt~framework platform=darwin')
|
||||||
|
|
||||||
depends_on('cmake@3.0:', type='build')
|
depends_on('cmake@3.0:', type='build')
|
||||||
depends_on('vtk@6.1.0~opengl2~mpi')
|
depends_on('vtk@8.1.0:+opengl2', when='@3.0:3.0.1')
|
||||||
depends_on('qt@4.8.6', when='+gui')
|
depends_on('vtk@6.1.0~opengl2', when='@:2.999')
|
||||||
|
depends_on('vtk+python', when='+python @3.0:')
|
||||||
|
depends_on('vtk~mpi')
|
||||||
|
depends_on('vtk+qt', when='+gui')
|
||||||
|
depends_on('qt@4.8.6:4.999', when='+gui @:2.999')
|
||||||
|
depends_on('qt@5.10:', when='+gui @3.0:')
|
||||||
depends_on('qwt', when='+gui')
|
depends_on('qwt', when='+gui')
|
||||||
depends_on('python', when='+python')
|
depends_on('python@2.6:2.8', when='+python')
|
||||||
depends_on('silo+shared', when='+silo')
|
depends_on('silo+shared', when='+silo')
|
||||||
depends_on('hdf5', when='+hdf5')
|
depends_on('hdf5', when='+hdf5')
|
||||||
depends_on('mpi', when='+mpi')
|
depends_on('mpi', when='+mpi')
|
||||||
|
depends_on('adios2', when='+adios2')
|
||||||
|
|
||||||
conflicts('+hdf5', when='~gui')
|
conflicts('+adios2', when='@:2.999')
|
||||||
conflicts('+silo', when='~gui')
|
conflicts('+hdf5', when='~gui @:2.999')
|
||||||
|
conflicts('+silo', when='~gui @:2.999')
|
||||||
|
|
||||||
root_cmakelists_dir = 'src'
|
root_cmakelists_dir = 'src'
|
||||||
|
|
||||||
|
@when('@3.0.0:3.0.1')
|
||||||
|
def patch(self):
|
||||||
|
# Some of VTK's targets don't create explicit libraries, so there is no
|
||||||
|
# 'vtktiff'. Instead, replace with the library variable defined from
|
||||||
|
# VTK's module flies (e.g. lib/cmake/vtk-8.1/Modules/vtktiff.cmake)
|
||||||
|
for filename in find('src', 'CMakeLists.txt'):
|
||||||
|
filter_file(r'\bvtk(tiff|jpeg|png)', r'${vtk\1_LIBRARIES}',
|
||||||
|
filename)
|
||||||
|
|
||||||
def cmake_args(self):
|
def cmake_args(self):
|
||||||
spec = self.spec
|
spec = self.spec
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
'-DVTK_MAJOR_VERSION={0}'.format(spec['vtk'].version[0]),
|
'-DVTK_MAJOR_VERSION=' + str(spec['vtk'].version[0]),
|
||||||
'-DVTK_MINOR_VERSION={0}'.format(spec['vtk'].version[1]),
|
'-DVTK_MINOR_VERSION=' + str(spec['vtk'].version[1]),
|
||||||
'-DVISIT_VTK_DIR:PATH={0}'.format(spec['vtk'].prefix),
|
'-DVISIT_VTK_DIR:PATH=' + spec['vtk'].prefix,
|
||||||
|
'-DVISIT_ZLIB_DIR:PATH=' + spec['zlib'].prefix,
|
||||||
'-DVISIT_USE_GLEW=OFF',
|
'-DVISIT_USE_GLEW=OFF',
|
||||||
'-DCMAKE_CXX_FLAGS=-fPIC',
|
'-DCMAKE_CXX_FLAGS=' + self.compiler.pic_flag,
|
||||||
'-DCMAKE_C_FLAGS=-fPIC'
|
'-DCMAKE_C_FLAGS=' + self.compiler.pic_flag,
|
||||||
]
|
]
|
||||||
|
|
||||||
if(spec.variants['python'].value):
|
if '+python' in spec:
|
||||||
args.append('-DPYTHON_DIR:PATH={0}'.format(spec['python'].home))
|
args.append('-DPYTHON_DIR:PATH={0}'.format(spec['python'].home))
|
||||||
|
|
||||||
if(spec.variants['gui'].value):
|
if '+gui' in spec:
|
||||||
qt_bin = spec['qt'].prefix.bin
|
qt_bin = spec['qt'].prefix.bin
|
||||||
args.append(
|
args.extend([
|
||||||
'-DVISIT_LOC_QMAKE_EXE:FILEPATH={0}/qmake-qt4'.format(qt_bin))
|
'-DVISIT_LOC_QMAKE_EXE:FILEPATH={0}/qmake'.format(qt_bin),
|
||||||
args.append('-DVISIT_QWT_DIR:PATH={0}'.format(spec['qwt'].prefix))
|
'-DVISIT_QT_DIR:PATH=' + spec['qt'].prefix,
|
||||||
|
'-DVISIT_QWT_DIR:PATH=' + spec['qwt'].prefix
|
||||||
|
])
|
||||||
else:
|
else:
|
||||||
args.append('-DVISIT_SERVER_COMPONENTS_ONLY=ON')
|
args.append('-DVISIT_SERVER_COMPONENTS_ONLY=ON')
|
||||||
args.append('-DVISIT_ENGINE_ONLY=ON')
|
args.append('-DVISIT_ENGINE_ONLY=ON')
|
||||||
|
|
||||||
if(spec.variants['hdf5'].value):
|
if '+hdf5' in spec:
|
||||||
args.append(
|
args.append(
|
||||||
'-DVISIT_HDF5_DIR:PATH={0}'.format(spec['hdf5'].prefix))
|
'-DVISIT_HDF5_DIR:PATH={0}'.format(spec['hdf5'].prefix))
|
||||||
if spec.satisfies('^hdf5+mpi', strict=True):
|
if spec.satisfies('^hdf5+mpi', strict=True):
|
||||||
args.append('-DVISIT_HDF5_MPI_DIR:PATH={0}'.format(
|
args.append('-DVISIT_HDF5_MPI_DIR:PATH={0}'.format(
|
||||||
spec['hdf5'].prefix))
|
spec['hdf5'].prefix))
|
||||||
|
|
||||||
if(spec.variants['silo'].value):
|
if '+silo' in spec:
|
||||||
args.append(
|
args.append(
|
||||||
'-DVISIT_SILO_DIR:PATH={0}'.format(spec['silo'].prefix))
|
'-DVISIT_SILO_DIR:PATH={0}'.format(spec['silo'].prefix))
|
||||||
|
|
||||||
if(spec.variants['mpi'].value):
|
if '+mpi' in spec:
|
||||||
args.append('-DVISIT_PARALLEL=ON')
|
args.append('-DVISIT_PARALLEL=ON')
|
||||||
args.append('-DVISIT_C_COMPILER={0}'.format(spec['mpi'].mpicc))
|
args.append('-DVISIT_C_COMPILER={0}'.format(spec['mpi'].mpicc))
|
||||||
args.append('-DVISIT_CXX_COMPILER={0}'.format(spec['mpi'].mpicxx))
|
args.append('-DVISIT_CXX_COMPILER={0}'.format(spec['mpi'].mpicxx))
|
||||||
|
|
22
var/spack/repos/builtin/packages/visit/spack-changes.patch
Normal file
22
var/spack/repos/builtin/packages/visit/spack-changes.patch
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
--- a/src/CMakeLists.txt 2019-08-11 17:06:04.000000000 -0400
|
||||||
|
+++ b/src/CMakeLists.txt 2019-08-11 17:06:20.000000000 -0400
|
||||||
|
@@ -459,6 +459,7 @@
|
||||||
|
cmake_policy(SET CMP0033 OLD)
|
||||||
|
cmake_policy(SET CMP0057 NEW)
|
||||||
|
cmake_policy(SET CMP0062 NEW)
|
||||||
|
+ cmake_policy(SET CMP0068 NEW)
|
||||||
|
IF(WIN32)
|
||||||
|
# don't automatically link with qtmain
|
||||||
|
cmake_policy(SET CMP0020 OLD)
|
||||||
|
@@ -2271,11 +2272,6 @@
|
||||||
|
# COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/osxfixup/osxfixup.py \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VISIT_INSTALLED_VERSION} @executable_path/.. 3)
|
||||||
|
#ADD_DEPENDENCIES(osxfixup install)
|
||||||
|
|
||||||
|
-# todo: replace below with lines above
|
||||||
|
-IF(APPLE)
|
||||||
|
- ADD_SUBDIRECTORY(osxfixup)
|
||||||
|
-ENDIF(APPLE)
|
||||||
|
-
|
||||||
|
IF (NOT WIN32)
|
||||||
|
MESSAGE(STATUS "\n\nUse recmake_visit.sh or search for `CMAKE_INVOKE' in CMakeCache.txt to re-run CMake with the same arguments\n\n")
|
||||||
|
ELSE (NOT WIN32)
|
|
@ -22,6 +22,7 @@ class Vtk(CMakePackage):
|
||||||
|
|
||||||
version('8.1.2', sha256='0995fb36857dd76ccfb8bb07350c214d9f9099e80b1e66b4a8909311f24ff0db')
|
version('8.1.2', sha256='0995fb36857dd76ccfb8bb07350c214d9f9099e80b1e66b4a8909311f24ff0db')
|
||||||
version('8.1.1', sha256='71a09b4340f0a9c58559fe946dc745ab68a866cf20636a41d97b6046cb736324')
|
version('8.1.1', sha256='71a09b4340f0a9c58559fe946dc745ab68a866cf20636a41d97b6046cb736324')
|
||||||
|
version('8.1.0', sha256='6e269f07b64fb13774f5925161fb4e1f379f4e6a0131c8408c555f6b58ef3cb7')
|
||||||
version('8.0.1', '692d09ae8fadc97b59d35cab429b261a')
|
version('8.0.1', '692d09ae8fadc97b59d35cab429b261a')
|
||||||
version('7.1.0', 'a7e814c1db503d896af72458c2d0228f')
|
version('7.1.0', 'a7e814c1db503d896af72458c2d0228f')
|
||||||
version('7.0.0', '5fe35312db5fb2341139b8e4955c367d')
|
version('7.0.0', '5fe35312db5fb2341139b8e4955c367d')
|
||||||
|
@ -32,7 +33,6 @@ class Vtk(CMakePackage):
|
||||||
variant('opengl2', default=True, description='Enable OpenGL2 backend')
|
variant('opengl2', default=True, description='Enable OpenGL2 backend')
|
||||||
variant('osmesa', default=False, description='Enable OSMesa support')
|
variant('osmesa', default=False, description='Enable OSMesa support')
|
||||||
variant('python', default=False, description='Enable Python support')
|
variant('python', default=False, description='Enable Python support')
|
||||||
variant('python3', default=False, description='Enable Python3 support')
|
|
||||||
variant('qt', default=False, description='Build with support for Qt')
|
variant('qt', default=False, description='Build with support for Qt')
|
||||||
variant('xdmf', default=False, description='Build XDMF file support')
|
variant('xdmf', default=False, description='Build XDMF file support')
|
||||||
variant('ffmpeg', default=False, description='Build with FFMPEG support')
|
variant('ffmpeg', default=False, description='Build with FFMPEG support')
|
||||||
|
@ -43,21 +43,16 @@ class Vtk(CMakePackage):
|
||||||
# At the moment, we cannot build with both osmesa and qt, but as of
|
# At the moment, we cannot build with both osmesa and qt, but as of
|
||||||
# VTK 8.1, that should change
|
# VTK 8.1, that should change
|
||||||
conflicts('+osmesa', when='+qt')
|
conflicts('+osmesa', when='+qt')
|
||||||
conflicts('+python', when='+python3')
|
conflicts('^python@3:', when='@:8.0')
|
||||||
conflicts('+python3', when='@:8.0')
|
|
||||||
|
|
||||||
extends('python', when='+python')
|
extends('python', when='+python')
|
||||||
extends('python', when='+python3')
|
|
||||||
|
|
||||||
depends_on('python@2.7:2.8', when='+python', type=('build', 'run'))
|
|
||||||
depends_on('python@3:', when='+python3', type=('build', 'run'))
|
|
||||||
|
|
||||||
|
depends_on('python@2.7:', when='+python', type=('build', 'run'))
|
||||||
depends_on('py-mpi4py', when='+python+mpi', type='run')
|
depends_on('py-mpi4py', when='+python+mpi', type='run')
|
||||||
depends_on('py-mpi4py', when='+python3+mpi', type='run')
|
|
||||||
|
|
||||||
# python3.7 compatibility patch backported from upstream
|
# python3.7 compatibility patch backported from upstream
|
||||||
# https://gitlab.kitware.com/vtk/vtk/commit/706f1b397df09a27ab8981ab9464547028d0c322
|
# https://gitlab.kitware.com/vtk/vtk/commit/706f1b397df09a27ab8981ab9464547028d0c322
|
||||||
patch('python3.7-const-char.patch', when='@:8.1.1 ^python@3.7:')
|
patch('python3.7-const-char.patch', when='@7.0.0:8.1.1 ^python@3.7:')
|
||||||
|
|
||||||
# The use of the OpenGL2 backend requires at least OpenGL Core Profile
|
# The use of the OpenGL2 backend requires at least OpenGL Core Profile
|
||||||
# version 3.2 or higher.
|
# version 3.2 or higher.
|
||||||
|
@ -129,6 +124,9 @@ def cmake_args(self):
|
||||||
'-DNETCDF_C_ROOT={0}'.format(spec['netcdf'].prefix),
|
'-DNETCDF_C_ROOT={0}'.format(spec['netcdf'].prefix),
|
||||||
'-DNETCDF_CXX_ROOT={0}'.format(spec['netcdf-cxx'].prefix),
|
'-DNETCDF_CXX_ROOT={0}'.format(spec['netcdf-cxx'].prefix),
|
||||||
|
|
||||||
|
# Allow downstream codes (e.g. VisIt) to override VTK's classes
|
||||||
|
'-DVTK_ALL_NEW_OBJECT_FACTORY:BOOL=ON',
|
||||||
|
|
||||||
# Disable wrappers for other languages.
|
# Disable wrappers for other languages.
|
||||||
'-DVTK_WRAP_JAVA=OFF',
|
'-DVTK_WRAP_JAVA=OFF',
|
||||||
'-DVTK_WRAP_TCL=OFF',
|
'-DVTK_WRAP_TCL=OFF',
|
||||||
|
@ -144,12 +142,13 @@ def cmake_args(self):
|
||||||
cmake_args.extend(['-DModule_vtkIOFFMPEG:BOOL=ON'])
|
cmake_args.extend(['-DModule_vtkIOFFMPEG:BOOL=ON'])
|
||||||
|
|
||||||
# Enable/Disable wrappers for Python.
|
# Enable/Disable wrappers for Python.
|
||||||
if '+python' in spec or '+python3' in spec:
|
if '+python' in spec:
|
||||||
cmake_args.extend([
|
cmake_args.extend([
|
||||||
'-DVTK_WRAP_PYTHON=ON',
|
'-DVTK_WRAP_PYTHON=ON',
|
||||||
'-DPYTHON_EXECUTABLE={0}'.format(spec['python'].command.path),
|
'-DPYTHON_EXECUTABLE={0}'.format(spec['python'].command.path),
|
||||||
'-DVTK_USE_SYSTEM_MPI4PY:BOOL=ON'
|
|
||||||
])
|
])
|
||||||
|
if '+mpi' in spec:
|
||||||
|
cmake_args.append('-DVTK_USE_SYSTEM_MPI4PY:BOOL=ON')
|
||||||
else:
|
else:
|
||||||
cmake_args.append('-DVTK_WRAP_PYTHON=OFF')
|
cmake_args.append('-DVTK_WRAP_PYTHON=OFF')
|
||||||
|
|
||||||
|
@ -206,12 +205,10 @@ def cmake_args(self):
|
||||||
if '+mpi' in spec:
|
if '+mpi' in spec:
|
||||||
cmake_args.extend(["-DModule_vtkIOParallelXdmf3:BOOL=ON"])
|
cmake_args.extend(["-DModule_vtkIOParallelXdmf3:BOOL=ON"])
|
||||||
|
|
||||||
cmake_args.extend([
|
cmake_args.append('-DVTK_RENDERING_BACKEND:STRING=' + opengl_ver)
|
||||||
'-DVTK_USE_SYSTEM_GLEW:BOOL=ON',
|
|
||||||
|
|
||||||
'-DVTK_RENDERING_BACKEND:STRING=OpenGL{0}'.format(
|
if spec.satisfies('@:8.1.0'):
|
||||||
'2' if '+opengl2' in spec else ''),
|
cmake_args.append('-DVTK_USE_SYSTEM_GLEW:BOOL=ON')
|
||||||
])
|
|
||||||
|
|
||||||
if '+osmesa' in spec:
|
if '+osmesa' in spec:
|
||||||
cmake_args.extend([
|
cmake_args.extend([
|
||||||
|
@ -220,9 +217,10 @@ def cmake_args(self):
|
||||||
'-DVTK_OPENGL_HAS_OSMESA:BOOL=ON'])
|
'-DVTK_OPENGL_HAS_OSMESA:BOOL=ON'])
|
||||||
|
|
||||||
else:
|
else:
|
||||||
cmake_args.extend([
|
cmake_args.append('-DVTK_OPENGL_HAS_OSMESA:BOOL=OFF')
|
||||||
'-DVTK_OPENGL_HAS_OSMESA:BOOL=OFF',
|
if spec.satisfies('@:7.9.9'):
|
||||||
'-DOpenGL_GL_PREFERENCE:STRING=LEGACY'])
|
# This option is gone in VTK 8.1.2
|
||||||
|
cmake_args.append('-DOpenGL_GL_PREFERENCE:STRING=LEGACY')
|
||||||
|
|
||||||
if 'darwin' in spec.architecture:
|
if 'darwin' in spec.architecture:
|
||||||
cmake_args.extend([
|
cmake_args.extend([
|
||||||
|
@ -262,10 +260,11 @@ def cmake_args(self):
|
||||||
if (self.spec.satisfies('%clang') and
|
if (self.spec.satisfies('%clang') and
|
||||||
self.compiler.is_apple and
|
self.compiler.is_apple and
|
||||||
self.compiler.version >= Version('5.1.0')):
|
self.compiler.version >= Version('5.1.0')):
|
||||||
cmake_args.extend(['-DVTK_REQUIRED_OBJCXX_FLAGS=""'])
|
cmake_args.extend(['-DVTK_REQUIRED_OBJCXX_FLAGS='])
|
||||||
|
|
||||||
# A bug in tao pegtl causes build failures with intel compilers
|
# A bug in tao pegtl causes build failures with intel compilers
|
||||||
if '%intel' in spec and spec.version >= Version('8.2'):
|
if '%intel' in spec and spec.version >= Version('8.2'):
|
||||||
cmake_args.append(
|
cmake_args.append(
|
||||||
'-DVTK_MODULE_ENABLE_VTK_IOMotionFX:BOOL=OFF')
|
'-DVTK_MODULE_ENABLE_VTK_IOMotionFX:BOOL=OFF')
|
||||||
|
|
||||||
return cmake_args
|
return cmake_args
|
||||||
|
|
Loading…
Reference in a new issue