Classification: UNCLASSIFIED Caveats: NONE Hello,
I am trying to get a ParaView + vrpn running on a zSpace. With zSpace VRPN server only available on Windows, here goes the following... I am able to get ParaView build with ninja when I only do -DPARAVIEW_USE_MPI:BOOL=ON and the binary appears to be working. But when I included -DPARAVIEW_ENABLE_PYTHON:BOOL=ON I have linking problem. How do you make sure that I have a working Python library? Dumpbin is reporting python is x64 library and I am trying to compile a x64 ParaView. I am getting some 26 unresolved externals when ninja is "Creating library lib\vtkPythonInterpreter-pv4.2.lib and object lib\vtkPythonInterpreter-pv4.2.exp." and some 123 unresolved externals when ninja is "Creating library lib\vtkWrappingPython27Core-pv4.2.lib and object lib\vtkWrappingPython27Core-pv4.2.exp"- included at the end of this email. The odd thing is, both failed command has python27.lib library in it FAILED: cmd.exe /C "cd . && C:\Users\simon.m.su.ctr\tools\cmake\cmake-3.0.0\bin\cmake.exe -E vs_link_dll C:\PROGRA~2\MICROS~1.0\VC\bin\X86_AM~1\link.exe /nologo VTK\Utilities\PythonInterpreter\CMakeFiles\vtkPythonInterpreter.dir\vtkPytho nInterpreter.cxx.obj VTK\Utilities\PythonInterpreter\CMakeFiles\vtkPythonInterpreter.dir\vtkPytho nInteractiveInterpreter.cxx.obj /out:bin\vtkPythonInterpreter-pv4.2.dll /implib:lib\vtkPythonInterpreter-pv4.2.lib /pdb:bin\vtkPythonInterpreter-pv4.2.pdb /dll /version:1.0 /machine:x64 /INCREMENTAL:NO lib\vtkCommonCore-pv4.2.lib C:\tmp\python-2.7.3\libs\python27.lib lib\vtksys-pv4.2.lib ws2_32.lib Psapi.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." And FAILED: cmd.exe /C "cd . && C:\Users\simon.m.su.ctr\tools\cmake\cmake-3.0.0\bin\cmake.exe -E vs_link_dll C:\PROGRA~2\MICROS~1.0\VC\bin\X86_AM~1\link.exe /nologo VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonArgs.c xx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonComman d.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonOverlo ad.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonUtil.c xx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkSmartPyObjec t.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKClass.cxx. obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKMutableObj ect.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKObject.cxx .obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKSpecialObj ect.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKTemplate.c xx.obj /out:bin\vtkWrappingPython27Core-pv4.2.dll /implib:lib\vtkWrappingPython27Core-pv4.2.lib /pdb:bin\vtkWrappingPython27Core-pv4.2.pdb /dll /version:1.0 /machine:x64 /INCREMENTAL:NO lib\vtkCommonCore-pv4.2.lib C:\tmp\python-2.7.3\libs\python27.lib lib\vtksys-pv4.2.lib ws2_32.lib Psapi.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." Do I have to included another python library? If so, what would that be? I am building a 64bit version of ParaView on Windows 7 using 1. VS2013 express version 2. Python-2.7.3 - release version build with cmake + ninja (https://github.com/davidsansome/python-cmake-buildsystem) cmake \ -DCMAKE_INSTALL_PREFIX=C:\tools\python\python-2.7.3 \ -DBUILD_SHARED:BOOL=ON \ -DCMAKE_BUILD_TYPE=Release \ -DZLIB_LIBRARY=C:\tools\zlib\zlib-1.2.8\lib\zlib.lib \ -DZLIB_INCLUDE_DIR=C:\tools\zlib\zlib-1.2.8\include \ ..\python-cmake-buildsystem -G Ninja \ ninja ninja install 3. Ninja-1.5.1 - build using the python-2.7.3 above so, python appears to work python bootstrap.py --x64 4. ParaView-v4.2.0-RC1-128-gc89b0ad git clone git://paraview.org/ParaView.git cd ParaView git pull git submodule update --init cmake \ -G Ninja \ -DCMAKE_INSTALL_PREFIX=C:\tools\ParaView\ParaView-v4.2.0-RC1-100-gfa06130 \ -DCMAKE_BUILD_TYPE=Release \ -DZLIB_LIBRARY=C:\tools\zlib\zlib-1.2.8\lib\zlib.lib \ -DZLIB_INCLUDE_DIR=C:\tools\zlib\zlib-1.2.8\include -DCMAKE_BUILD_TYPE=Release \ -DPARAVIEW_USE_MPI:BOOL=ON \ -DMPI_CXX_LIBRARIES:STRING="C:\tools\openmpi\openmpi-1.4.4\lib\libmpi_cxx.li b" \ -DMPI_C_LIBRARIES:STRING="C:\tools\openmpi\openmpi-1.4.4\lib\libmpi.lib" \ -DMPI_LIBRARY:FILEPATH="C:\tools\openmpi\openmpi-1.4.4\lib\libmpi_cxx.lib" \ -DMPI_CXX_INCLUDE_PATH=C:/tools/openmpi/openmpi-1.4.4/include \ -DMPI_C_INCLUDE_PATH=C:/tools/openmpi/openmpi-1.4.4/include \ -DGLUT_glut_LIBRARY=C:\tools\freeglut\freeglut-2.8.1\lib\freeglut.lib \ -DGLUT_INCLUDE_DIR=C:\tools\freeglut\freeglut-2.8.1\include \ -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \ -DPYTHON_LIBRARY=C:\tools\python\python-2.7.3\libs\python27.lib \ -DPYTHON_INCLUDE_DIR=C:\tools\python\python-2.7.3\include \ -DPYTHON_EXECUTABLE=C:\tools\python\python-2.7.3\bin\python.exe \ ..\ParaView-v4.2.0-RC1-128-gc89b0ad ninja Any help is much appreciated. Thanks -simon ======================== linking error ======================= [1/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAbstractCellLocato r.cxx.obj [2/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAbstractPointLocat or.cxx.obj [3/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAdjacentVertexIter ator.cxx.obj [4/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAMRBox.cxx.obj [5/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAMRUtilities.cxx.o bj [6/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAnimationScene.cxx .obj [7/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAnnotation.cxx.obj [8/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAnnotationLayers.c xx.obj [9/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkArrayData.cxx.obj [10/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAttributesErrorMet ric.cxx.obj [11/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBiQuadraticQuad.cx x.obj [12/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBiQuadraticQuadrat icHexahedron.cxx.obj [13/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBiQuadraticQuadrat icWedge.cxx.obj [14/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBiQuadraticTriangl e.cxx.obj [15/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBox.cxx.obj [16/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBSPCuts.cxx.obj [17/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBSPIntersections.c xx.obj [18/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCell3D.cxx.obj [19/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellArray.cxx.obj [20/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCell.cxx.obj [21/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellData.cxx.obj [22/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellIterator.cxx.o bj [23/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellLinks.cxx.obj [24/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellLocator.cxx.ob j [25/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCellTypes.cxx.obj [26/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCompositeDataSet.c xx.obj [27/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCompositeDataItera tor.cxx.obj [28/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCone.cxx.obj [29/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkConvexPointSet.cxx .obj [30/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCubicLine.cxx.obj [31/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkCylinder.cxx.obj [32/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataSetCellIterato r.cxx.obj [33/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataObjectCollecti on.cxx.obj [34/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataObject.cxx.obj [35/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataObjectTypes.cx x.obj [36/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataObjectTree.cxx .obj [37/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataObjectTreeIter ator.cxx.obj [38/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataSetAttributes. cxx.obj [39/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataSetCollection. cxx.obj [40/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDataSet.cxx.obj [41/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDirectedAcyclicGra ph.cxx.obj [42/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDirectedGraph.cxx. obj [43/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkDistributedGraphHe lper.cxx.obj [44/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkEdgeListIterator.c xx.obj [45/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkEdgeTable.cxx.obj [46/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkEmptyCell.cxx.obj [47/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkExplicitCell.cxx.o bj [48/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkExtractStructuredG ridHelper.cxx.obj [49/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkFieldData.cxx.obj [50/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericAdaptorCell .cxx.obj [51/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericAttributeCo llection.cxx.obj [52/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericAttribute.c xx.obj [53/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericCell.cxx.ob j [54/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericCellIterato r.cxx.obj [55/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericCellTessell ator.cxx.obj [56/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericDataSet.cxx .obj [57/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericEdgeTable.c xx.obj [58/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericInterpolate dVelocityField.cxx.obj [59/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericPointIterat or.cxx.obj [60/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGenericSubdivision ErrorMetric.cxx.obj [61/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGeometricErrorMetr ic.cxx.obj [62/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGraph.cxx.obj [63/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGraphEdge.cxx.obj [64/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkGraphInternals.cxx .obj [65/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHexagonalPrism.cxx .obj [66/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHexahedron.cxx.obj [67/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHierarchicalBoxDat aIterator.cxx.obj [68/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHierarchicalBoxDat aSet.cxx.obj [69/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperOctreeCursor. cxx.obj [70/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperOctree.cxx.ob j [71/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperOctreePointsG rabber.cxx.obj [72/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperTree.cxx.obj [73/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperTreeCursor.cx x.obj [74/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkHyperTreeGrid.cxx. obj [75/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImageData.cxx.obj [76/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImageIterator.cxx. obj [77/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitBoolean.cx x.obj [78/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitDataSet.cx x.obj [79/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitFunctionCo llection.cxx.obj [80/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitFunction.c xx.obj [81/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitHalo.cxx.o bj [82/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitSelectionL oop.cxx.obj [83/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitSum.cxx.ob j [84/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitVolume.cxx .obj [85/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkImplicitWindowFunc tion.cxx.obj [86/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkIncrementalOctreeN ode.cxx.obj [87/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkIncrementalOctreeP ointLocator.cxx.obj [88/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkIncrementalPointLo cator.cxx.obj [89/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkInEdgeIterator.cxx .obj [90/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkInformationQuadrat ureSchemeDefinitionVectorKey.cxx.obj [91/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkIterativeClosestPo intTransform.cxx.obj [92/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkKdNode.cxx.obj [93/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkKdTree.cxx.obj [94/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkKdTreePointLocator .cxx.obj [95/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkLine.cxx.obj [96/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkLocator.cxx.obj [97/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMarchingSquaresLin eCases.cxx.obj [98/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMarchingCubesTrian gleCases.cxx.obj [99/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMeanValueCoordinat esInterpolator.cxx.obj [100/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMergePoints.cxx.ob j [101/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMultiBlockDataSet. cxx.obj [102/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMultiPieceDataSet. cxx.obj [103/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMutableDirectedGra ph.cxx.obj [104/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMutableUndirectedG raph.cxx.obj [105/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkNonLinearCell.cxx. obj [106/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkNonMergingPointLoc ator.cxx.obj [107/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkOctreePointLocator .cxx.obj [108/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkOctreePointLocator Node.cxx.obj [109/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkOrderedTriangulato r.cxx.obj [110/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkOutEdgeIterator.cx x.obj [111/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPath.cxx.obj [112/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPentagonalPrism.cx x.obj [113/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPerlinNoise.cxx.ob j [114/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPiecewiseFunction. cxx.obj [115/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPixel.cxx.obj [116/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPixelExtent.cxx.ob j [117/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPlaneCollection.cx x.obj [118/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPlane.cxx.obj [119/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPlanes.cxx.obj [120/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPlanesIntersection .cxx.obj [121/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPointData.cxx.obj [122/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPointLocator.cxx.o bj [123/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPointSet.cxx.obj [124/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPointSetCellIterat or.cxx.obj [125/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPointsProjectedHul l.cxx.obj [126/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyDataCollection .cxx.obj [127/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyData.cxx.obj [128/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolygon.cxx.obj [129/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyhedron.cxx.obj [130/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyLine.cxx.obj [131/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyPlane.cxx.obj [132/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPolyVertex.cxx.obj [133/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkPyramid.cxx.obj [134/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuad.cxx.obj [135/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticEdge.cxx. obj [136/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticHexahedro n.cxx.obj [137/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticLinearQua d.cxx.obj [138/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticLinearWed ge.cxx.obj [139/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticPolygon.c xx.obj [140/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticPyramid.c xx.obj [141/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticQuad.cxx. obj [142/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticTetra.cxx .obj [143/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticTriangle. cxx.obj [144/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadraticWedge.cxx .obj [145/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadratureSchemeDe finition.cxx.obj [146/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkQuadric.cxx.obj [147/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkRectilinearGrid.cx x.obj [148/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkReebGraph.cxx.obj [149/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkReebGraphSimplific ationMetric.cxx.obj [150/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSelection.cxx.obj [151/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSelectionNode.cxx. obj [152/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSimpleCellTessella tor.cxx.obj [153/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSmoothErrorMetric. cxx.obj [154/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSphere.cxx.obj [155/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSpline.cxx.obj [156/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredData.cxx .obj [157/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredExtent.c xx.obj [158/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredGrid.cxx .obj [159/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredPointsCo llection.cxx.obj [160/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredPoints.c xx.obj [161/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkStructuredVisibili tyConstraint.cxx.obj [162/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkSuperquadric.cxx.o bj [163/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTable.cxx.obj [164/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTensor.cxx.obj [165/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTetra.cxx.obj [166/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTreeBFSIterator.cx x.obj [167/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTree.cxx.obj [168/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTreeDFSIterator.cx x.obj [169/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTriangle.cxx.obj [170/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTriangleStrip.cxx. obj [171/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTriQuadraticHexahe dron.cxx.obj [172/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUndirectedGraph.cx x.obj [173/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUniformGrid.cxx.ob j [174/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUnstructuredGrid.c xx.obj [175/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUnstructuredGridBa se.cxx.obj [176/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUnstructuredGridCe llIterator.cxx.obj [177/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkVertex.cxx.obj [178/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkVertexListIterator .cxx.obj [179/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkVoxel.cxx.obj [180/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkWedge.cxx.obj [181/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkXMLDataElement.cxx .obj [182/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkTreeIterator.cxx.o bj [183/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBoundingBox.cxx.ob j [184/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAtom.cxx.obj [185/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkBond.cxx.obj [186/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkMolecule.cxx.obj [187/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAbstractElectronic Data.cxx.obj [188/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkNonOverlappingAMR. cxx.obj [189/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkOverlappingAMR.cxx .obj [190/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAMRInformation.cxx .obj [191/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkAMRDataInternals.c xx.obj [192/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUniformGridAMR.cxx .obj [193/16592] Building CXX object VTK\Common\DataModel\CMakeFiles\vtkCommonDataModel.dir\vtkUniformGridAMRData Iterator.cxx.obj [194/16592] Linking CXX shared library bin\vtkPythonInterpreter-pv4.2.dll [195/16592] Linking CXX shared library bin\vtkWrappingPython27Core-pv4.2.dll FAILED: cmd.exe /C "cd . && C:\Users\simon.m.su.ctr\tools\cmake\cmake-3.0.0\bin\cmake.exe -E vs_link_dll C:\PROGRA~2\MICROS~1.0\VC\bin\X86_AM~1\link.exe /nologo VTK\Utilities\PythonInterpreter\CMakeFiles\vtkPythonInterpreter.dir\vtkPytho nInterpreter.cxx.obj VTK\Utilities\PythonInterpreter\CMakeFiles\vtkPythonInterpreter.dir\vtkPytho nInteractiveInterpreter.cxx.obj /out:bin\vtkPythonInterpreter-pv4.2.dll /implib:lib\vtkPythonInterpreter-pv4.2.lib /pdb:bin\vtkPythonInterpreter-pv4.2.pdb /dll /version:1.0 /machine:x64 /INCREMENTAL:NO lib\vtkCommonCore-pv4.2.lib C:\tmp\python-2.7.3\libs\python27.lib lib\vtksys-pv4.2.lib ws2_32.lib Psapi.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." Creating library lib\vtkPythonInterpreter-pv4.2.lib and object lib\vtkPythonInterpreter-pv4.2.exp vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyType_IsSubtype referenced in function "struct _object * __cdecl vtkWrite(struct _object *,struct _object *)" (?vtkWrite@@YAPEAU_object@@PEAU1@0@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyType_Ready referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GenericGetAttr referenced in function "void __cdecl `dynamic initializer for 'vtkPythonStdStreamCaptureHelperType''(void)" (??__EvtkPythonStdStreamCaptureHelperType@@YAXXZ) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GenericSetAttr referenced in function "void __cdecl `dynamic initializer for 'vtkPythonStdStreamCaptureHelperType''(void)" (??__EvtkPythonStdStreamCaptureHelperType@@YAXXZ) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp__PyObject_New referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_FromString referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyList_Insert referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyArg_ParseTuple referenced in function "struct _object * __cdecl vtkWrite(struct _object *,struct _object *)" (?vtkWrite@@YAPEAU_object@@PEAU1@0@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_BuildValue referenced in function "struct _object * __cdecl vtkWrite(struct _object *,struct _object *)" (?vtkWrite@@YAPEAU_object@@PEAU1@0@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_SetProgramName referenced in function "public: static void __cdecl vtkPythonInterpreter::SetProgramName(char const *)" (?SetProgramName@vtkPythonInterpreter@@SAXPEBD@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_InitializeEx referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_Finalize referenced in function "public: static void __cdecl vtkPythonInterpreter::Finalize(void)" (?Finalize@vtkPythonInterpreter@@SAXXZ) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_IsInitialized referenced in function "public: static void __cdecl vtkPythonInterpreter::Finalize(void)" (?Finalize@vtkPythonInterpreter@@SAXXZ) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyRun_SimpleStringFlags referenced in function "public: static void __cdecl vtkPythonInterpreter::RunSimpleString(char const *)" (?RunSimpleString@vtkPythonInterpreter@@SAXPEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2001: unresolved external symbol __imp_PyRun_SimpleStringFlags vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_Main referenced in function "public: static int __cdecl vtkPythonInterpreter::PyMain(int,char * *)" (?PyMain@vtkPythonInterpreter@@SAHHPEAPEAD@Z) vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PySys_GetObject referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2001: unresolved external symbol __imp_PySys_GetObject vtkPythonInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PySys_SetObject referenced in function "public: static bool __cdecl vtkPythonInterpreter::Initialize(int)" (?Initialize@vtkPythonInterpreter@@SA_NH@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2001: unresolved external symbol __imp_PySys_SetObject vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_GetItemString referenced in function "public: struct _object * __cdecl vtkPythonInteractiveInterpreter::vtkInternals::GetInteractiveConsole(void)" (?GetInteractiveConsole@vtkInternals@vtkPythonInteractiveInterpreter@@QEAAPE AU_object@@XZ) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyModule_GetDict referenced in function "public: struct _object * __cdecl vtkPythonInteractiveInterpreter::vtkInternals::GetInteractiveConsole(void)" (?GetInteractiveConsole@vtkInternals@vtkPythonInteractiveInterpreter@@QEAAPE AU_object@@XZ) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Clear referenced in function "public: int __cdecl vtkPythonInteractiveInterpreter::RunStringWithConsoleLocals(char const *)" (?RunStringWithConsoleLocals@vtkPythonInteractiveInterpreter@@QEAAHPEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyArg_Parse referenced in function "public: bool __cdecl vtkPythonInteractiveInterpreter::Push(char const * const)" (?Push@vtkPythonInteractiveInterpreter@@QEAA_NQEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyRun_StringFlags referenced in function "public: int __cdecl vtkPythonInteractiveInterpreter::RunStringWithConsoleLocals(char const *)" (?RunStringWithConsoleLocals@vtkPythonInteractiveInterpreter@@QEAAHPEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Print referenced in function "public: int __cdecl vtkPythonInteractiveInterpreter::RunStringWithConsoleLocals(char const *)" (?RunStringWithConsoleLocals@vtkPythonInteractiveInterpreter@@QEAAHPEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_FlushLine referenced in function "public: int __cdecl vtkPythonInteractiveInterpreter::RunStringWithConsoleLocals(char const *)" (?RunStringWithConsoleLocals@vtkPythonInteractiveInterpreter@@QEAAHPEBD@Z) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyImport_AddModule referenced in function "public: struct _object * __cdecl vtkPythonInteractiveInterpreter::vtkInternals::GetInteractiveConsole(void)" (?GetInteractiveConsole@vtkInternals@vtkPythonInteractiveInterpreter@@QEAAPE AU_object@@XZ) vtkPythonInteractiveInterpreter.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_CallMethod referenced in function "public: bool __cdecl vtkPythonInteractiveInterpreter::Push(char const * const)" (?Push@vtkPythonInteractiveInterpreter@@QEAA_NQEBD@Z) bin\vtkPythonInterpreter-pv4.2.dll : fatal error LNK1120: 26 unresolved externals LINK failed. with 1120 FAILED: cmd.exe /C "cd . && C:\Users\simon.m.su.ctr\tools\cmake\cmake-3.0.0\bin\cmake.exe -E vs_link_dll C:\PROGRA~2\MICROS~1.0\VC\bin\X86_AM~1\link.exe /nologo VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonArgs.c xx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonComman d.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonOverlo ad.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkPythonUtil.c xx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\vtkSmartPyObjec t.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKClass.cxx. obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKMutableObj ect.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKObject.cxx .obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKSpecialObj ect.cxx.obj VTK\Wrapping\PythonCore\CMakeFiles\vtkWrappingPythonCore.dir\PyVTKTemplate.c xx.obj /out:bin\vtkWrappingPython27Core-pv4.2.dll /implib:lib\vtkWrappingPython27Core-pv4.2.lib /pdb:bin\vtkWrappingPython27Core-pv4.2.pdb /dll /version:1.0 /machine:x64 /INCREMENTAL:NO lib\vtkCommonCore-pv4.2.lib C:\tmp\python-2.7.3\libs\python27.lib lib\vtksys-pv4.2.lib ws2_32.lib Psapi.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." Creating library lib\vtkWrappingPython27Core-pv4.2.lib and object lib\vtkWrappingPython27Core-pv4.2.exp vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyType_IsSubtype referenced in function "bool __cdecl vtkPythonGetLongLongValue<__int64>(struct _object *,__int64 &)" (??$vtkPythonGetLongLongValue@_J@@YA_NPEAU_object@@AEA_J@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyType_IsSubtype PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyType_IsSubtype vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_IsTrue referenced in function "bool __cdecl vtkPythonGetArray<bool>(struct _object *,bool *,int)" (??$vtkPythonGetArray@_N@@YA_NPEAU_object@@PEA_NH@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_IsTrue PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_IsTrue vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyCallable_Check referenced in function "public: bool __cdecl vtkPythonArgs::GetFunction(struct _object * &)" (?GetFunction@vtkPythonArgs@@QEAA_NAEAPEAU_object@@@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyCallable_Check PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyCallable_Check vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp__PyUnicodeUCS2_AsDefaultEncodedString referenced in function "bool __cdecl vtkPythonGetStringValue<char const >(struct _object *,char const * &,char const *)" (??$vtkPythonGetStringValue@$$CBD@@YA_NPEAU_object@@AEAPEBDPEBD@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyUnicodeUCS2_DecodeUTF8 referenced in function "public: static struct _object * __cdecl vtkPythonArgs::BuildValue(class vtkUnicodeString const &)" (?BuildValue@vtkPythonArgs@@SAPEAU_object@@AEBVvtkUnicodeString@@@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyUnicodeUCS2_DecodeUTF8 vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyUnicodeUCS2_AsUTF8String referenced in function "bool __cdecl vtkPythonGetValue(struct _object *,class vtkUnicodeString &)" (?vtkPythonGetValue@@YA_NPEAU_object@@AEAVvtkUnicodeString@@@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyInt_FromLong referenced in function "struct _object * __cdecl vtkPythonBuildTuple<signed char>(signed char const *,int)" (??$vtkPythonBuildTuple@C@@YAPEAU_object@@PEBCH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyInt_FromLong PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyInt_FromLong vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyInt_AsLong referenced in function "bool __cdecl vtkPythonGetUnsignedLongLongValue<unsigned __int64>(struct _object *,unsigned __int64 &)" (??$vtkPythonGetUnsignedLongLongValue@_K@@YA_NPEAU_object@@AEA_K@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyInt_AsLong vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyInt_AsLong vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyBool_FromLong referenced in function "struct _object * __cdecl vtkPythonBuildTuple<bool>(bool const *,int)" (??$vtkPythonBuildTuple@_N@@YAPEAU_object@@PEB_NH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromUnsignedLong referenced in function "struct _object * __cdecl vtkPythonBuildTuple<unsigned int>(unsigned int const *,int)" (??$vtkPythonBuildTuple@I@@YAPEAU_object@@PEBIH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsUnsignedLong referenced in function "bool __cdecl vtkPythonGetValue(struct _object *,unsigned int &)" (?vtkPythonGetValue@@YA_NPEAU_object@@AEAI@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromLongLong referenced in function "struct _object * __cdecl vtkPythonBuildTuple<__int64>(__int64 const *,int)" (??$vtkPythonBuildTuple@_J@@YAPEAU_object@@PEB_JH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromUnsignedLongLong referenced in function "struct _object * __cdecl vtkPythonBuildTuple<unsigned __int64>(unsigned __int64 const *,int)" (??$vtkPythonBuildTuple@_K@@YAPEAU_object@@PEB_KH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsLongLong referenced in function "bool __cdecl vtkPythonGetLongLongValue<__int64>(struct _object *,__int64 &)" (??$vtkPythonGetLongLongValue@_J@@YA_NPEAU_object@@AEA_J@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyLong_AsLongLong vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsUnsignedLongLong referenced in function "bool __cdecl vtkPythonGetUnsignedLongLongValue<unsigned __int64>(struct _object *,unsigned __int64 &)" (??$vtkPythonGetUnsignedLongLongValue@_K@@YA_NPEAU_object@@AEA_K@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyFloat_FromDouble referenced in function "struct _object * __cdecl vtkPythonBuildTuple<float>(float const *,int)" (??$vtkPythonBuildTuple@M@@YAPEAU_object@@PEBMH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyFloat_FromDouble vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyFloat_AsDouble referenced in function "bool __cdecl vtkPythonGetArray<float>(struct _object *,float *,int)" (??$vtkPythonGetArray@M@@YA_NPEAU_object@@PEAMH@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyFloat_AsDouble vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_FromStringAndSize referenced in function "public: static struct _object * __cdecl vtkPythonArgs::BuildBytes(char const *,int)" (?BuildBytes@vtkPythonArgs@@SAPEAU_object@@PEBDH@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromStringAndSize PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromStringAndSize PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromStringAndSize PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_FromString referenced in function "bool __cdecl vtkPythonSetArray<char>(struct _object *,char const *,int)" (??$vtkPythonSetArray@D@@YA_NPEAU_object@@PEBDH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_FromString PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString PyVTKTemplate.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_AsString referenced in function "public: __cdecl std::error_category::error_category(void)" (??0error_category@std@@QEAA@XZ) vtkPythonArgs.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_AsString vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_AsStringAndSize referenced in function "bool __cdecl vtkPythonGetStdStringValue(struct _object *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &,char const *)" (?vtkPythonGetStdStringValue@@YA_NPEAU_object@@AEAV?$basic_string@DU?$char_t raits@D@std@@V?$allocator@D@2@@std@@PEBD@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyTuple_New referenced in function "struct _object * __cdecl vtkPythonBuildTuple<signed char>(signed char const *,int)" (??$vtkPythonBuildTuple@C@@YAPEAU_object@@PEBCH@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_New PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_New PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_New PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString PyVTKTemplate.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_SetString referenced in function "public: __cdecl std::_Generic_error_category::_Generic_error_category(void)" (??0_Generic_error_category@std@@QEAA@XZ) vtkPythonArgs.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_SetString vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Occurred referenced in function "bool __cdecl vtkPythonGetArray<float>(struct _object *,float *,int)" (??$vtkPythonGetArray@M@@YA_NPEAU_object@@PEAMH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Occurred vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Occurred vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Occurred vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Fetch referenced in function "protected: bool __cdecl vtkPythonArgs::RefineArgTypeError(int)" (?RefineArgTypeError@vtkPythonArgs@@IEAA_NH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Restore referenced in function "protected: bool __cdecl vtkPythonArgs::RefineArgTypeError(int)" (?RefineArgTypeError@vtkPythonArgs@@IEAA_NH@Z) vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_ExceptionMatches referenced in function "protected: bool __cdecl vtkPythonArgs::RefineArgTypeError(int)" (?RefineArgTypeError@vtkPythonArgs@@IEAA_NH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_ExceptionMatches vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_ExceptionMatches PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_ExceptionMatches vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PySequence_Check referenced in function "bool __cdecl vtkPythonGetArray<signed char>(struct _object *,signed char *,int)" (??$vtkPythonGetArray@C@@YA_NPEAU_object@@PEACH@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PySequence_Check vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PySequence_Size referenced in function "bool __cdecl vtkPythonGetArray<signed char>(struct _object *,signed char *,int)" (??$vtkPythonGetArray@C@@YA_NPEAU_object@@PEACH@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PySequence_Size PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PySequence_Size vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PySequence_GetItem referenced in function "bool __cdecl vtkPythonGetArray<signed char>(struct _object *,signed char *,int)" (??$vtkPythonGetArray@C@@YA_NPEAU_object@@PEACH@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PySequence_GetItem PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PySequence_GetItem vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PySequence_SetItem referenced in function "bool __cdecl vtkPythonSetArray<signed char>(struct _object *,signed char const *,int)" (??$vtkPythonSetArray@C@@YA_NPEAU_object@@PEBCH@Z) PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp__Py_NoneStruct referenced in function "struct _object * __cdecl vtkPythonBuildTuple<signed char>(signed char const *,int)" (??$vtkPythonBuildTuple@C@@YAPEAU_object@@PEBCH@Z) vtkPythonCommand.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp__Py_NoneStruct vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyFloat_Type referenced in function "bool __cdecl vtkPythonGetLongLongValue<__int64>(struct _object *,__int64 &)" (??$vtkPythonGetLongLongValue@_J@@YA_NPEAU_object@@AEA_J@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyFloat_Type PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyFloat_Type vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_OverflowError referenced in function "bool __cdecl vtkPythonGetUnsignedLongLongValue<unsigned __int64>(struct _object *,unsigned __int64 &)" (??$vtkPythonGetUnsignedLongLongValue@_K@@YA_NPEAU_object@@AEA_K@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_TypeError referenced in function "bool __cdecl vtkPythonGetLongLongValue<__int64>(struct _object *,__int64 &)" (??$vtkPythonGetLongLongValue@_J@@YA_NPEAU_object@@AEA_J@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_TypeError PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_ValueError vtkPythonArgs.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_ValueError referenced in function "protected: bool __cdecl vtkPythonArgs::RefineArgTypeError(int)" (?RefineArgTypeError@vtkPythonArgs@@IEAA_NH@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_ValueError PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_ValueError PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_ValueError vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GetAttrString referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GetAttrString PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GetAttrString vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromLong referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Clear PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Clear vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Clear referenced in function "struct _object * __cdecl `anonymous namespace'::BuildCallDataArgList(struct _object *,char const *,struct _object *)" (?BuildCallDataArgList@?A0xfc44b691@@YAPEAU_object@@PEAU2@PEBD0@Z) vtkPythonOverload.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Clear vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Clear PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Clear vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyThreadState_Swap referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_BuildValue vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_BuildValue referenced in function "struct _object * __cdecl `anonymous namespace'::BuildCallDataArgList(struct _object *,char const *,struct _object *)" (?BuildCallDataArgList@?A0xfc44b691@@YAPEAU_object@@PEAU2@PEBD0@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_BuildValue PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_BuildValue PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_BuildValue vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_IsInitialized referenced in function "protected: virtual __cdecl vtkPythonCommand::~vtkPythonCommand(void)" (??1vtkPythonCommand@@MEAA@XZ) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_IsInitialized vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_Print referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyErr_Print vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_Exit referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_Py_Exit vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyEval_CallObjectWithKeywords referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyEval_CallObjectWithKeywords PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyEval_CallObjectWithKeywords PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyEval_CallObjectWithKeywords vtkPythonCommand.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_KeyboardInterrupt referenced in function "public: virtual void __cdecl vtkPythonCommand::Execute(class vtkObject *,unsigned long,void *)" (?Execute@vtkPythonCommand@@UEAAXPEAVvtkObject@@KPEAX@Z) vtkPythonUtil.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_KeyboardInterrupt vtkPythonOverload.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_Size referenced in function "public: static int __cdecl vtkPythonOverload::CheckArg(struct _object *,char const *,char const *,int)" (?CheckArg@vtkPythonOverload@@SAHPEAU_object@@PEBD1H@Z) PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyString_Size vtkPythonOverload.cxx.obj : error LNK2019: unresolved external symbol __imp_PyTuple_Size referenced in function "public: static int __cdecl vtkPythonOverload::CheckArg(struct _object *,char const *,char const *,int)" (?CheckArg@vtkPythonOverload@@SAHPEAU_object@@PEBD1H@Z) PyVTKClass.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_Size PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_Size vtkPythonOverload.cxx.obj : error LNK2019: unresolved external symbol __imp_PyBool_Type referenced in function "public: static int __cdecl vtkPythonOverload::CheckArg(struct _object *,char const *,char const *,int)" (?CheckArg@vtkPythonOverload@@SAHPEAU_object@@PEBD1H@Z) vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_Hash referenced in function "public: static long __cdecl vtkPythonUtil::VariantHash(class vtkVariant const *)" (?VariantHash@vtkPythonUtil@@SAJPEBVvtkVariant@@@Z) vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp__Py_HashPointer referenced in function "public: static long __cdecl vtkPythonUtil::VariantHash(class vtkVariant const *)" (?VariantHash@vtkPythonUtil@@SAJPEBVvtkVariant@@@Z) vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp__PyString_Resize referenced in function "public: static struct _object * __cdecl vtkPythonUtil::BuildDocString(char const * * const)" (?BuildDocString@vtkPythonUtil@@SAPEAU_object@@QEAPEBD@Z) vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_Size referenced in function "public: static void __cdecl vtkPythonUtil::RemoveObjectFromMap(struct _object *)" (?RemoveObjectFromMap@vtkPythonUtil@@SAXPEAU_object@@@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_Size vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp_PyErr_GivenExceptionMatches referenced in function "public: static void * __cdecl vtkPythonUtil::GetPointerFromSpecialObject(struct _object *,char const *,struct _object * *)" (?GetPointerFromSpecialObject@vtkPythonUtil@@SAPEAXPEAU_object@@PEBDPEAPEAU2 @@Z) vtkPythonUtil.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_AtExit referenced in function "public: static void __cdecl vtkPythonUtil::AddClassToMap(struct _object *,char const *)" (?AddClassToMap@vtkPythonUtil@@SAXPEAU_object@@PEBD@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GetAttr referenced in function "struct _object * __cdecl PyVTKClass_Call(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_Call@@YAPEAU_object@@PEAU1@00@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GetAttr PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp__PyObject_GC_New referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp__PyObject_GC_New PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp__PyObject_GC_New PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GC_Track referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_Track PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_Track PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GC_UnTrack referenced in function "void __cdecl PyVTKClass_Delete(struct _object *)" (?PyVTKClass_Delete@@YAXPEAU_object@@@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_UnTrack PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_UnTrack PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GC_Del referenced in function "void __cdecl PyVTKClass_Delete(struct _object *)" (?PyVTKClass_Delete@@YAXPEAU_object@@@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_Del PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_GC_Del PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_InternFromString referenced in function PyVTKClass_New PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyTuple_GetItem referenced in function "struct _object * __cdecl PyVTKClass_GetAttr(struct _object *,struct _object *)" (?PyVTKClass_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyTuple_GetItem PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_New referenced in function "struct _object * __cdecl PyVTKClass_GetAttr(struct _object *,struct _object *)" (?PyVTKClass_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_New PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_New PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_GetItem referenced in function "struct _object * __cdecl PyVTKClass_Call(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_Call@@YAPEAU_object@@PEAU1@00@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_GetItem PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_Keys referenced in function "struct _object * __cdecl PyVTKClass_Dir(struct _object *,struct _object *)" (?PyVTKClass_Dir@@YAPEAU_object@@PEAU1@0@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_Update referenced in function "struct _object * __cdecl PyVTKClass_Dir(struct _object *,struct _object *)" (?PyVTKClass_Dir@@YAPEAU_object@@PEAU1@0@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_GetItemString referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_SetItemString referenced in function "struct _object * __cdecl PyVTKClass_GetAttr(struct _object *,struct _object *)" (?PyVTKClass_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_SetItemString PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_DelItemString referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyCFunction_NewEx referenced in function "struct _object * __cdecl PyVTKClass_GetAttr(struct _object *,struct _object *)" (?PyVTKClass_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyCFunction_NewEx PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyCFunction_NewEx PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyArg_ParseTuple referenced in function "struct _object * __cdecl PyVTKClass_Call(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_Call@@YAPEAU_object@@PEAU1@00@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyArg_ParseTuple PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyArg_ParseTuple PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyArg_ParseTupleAndKeywords referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyEval_GetGlobals referenced in function "struct _object * __cdecl PyVTKClass_NewSubclass(struct _object *,struct _object *,struct _object *)" (?PyVTKClass_NewSubclass@@YAPEAU_object@@PEAU1@00@Z) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyType_Type referenced in function "void __cdecl `dynamic initializer for 'PyVTKClassMetaType''(void)" (??__EPyVTKClassMetaType@@YAXXZ) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyType_Type PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyType_Type PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyType_Type PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyClass_Type referenced in function "void __cdecl `dynamic initializer for 'PyVTKClass_Type''(void)" (??__EPyVTKClass_Type@@YAXXZ) PyVTKClass.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_AttributeError referenced in function "struct _object * __cdecl PyVTKClass_GetAttr(struct _object *,struct _object *)" (?PyVTKClass_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_AttributeError PyVTKObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_AttributeError PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyExc_AttributeError PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_Repr referenced in function "struct _object * __cdecl PyVTKMutableObject_Repr(struct _object *)" (?PyVTKMutableObject_Repr@@YAPEAU_object@@PEAU1@@Z) PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_Repr PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_Str referenced in function "struct _object * __cdecl PyVTKMutableObject_Str(struct _object *)" (?PyVTKMutableObject_Str@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_RichCompare referenced in function "struct _object * __cdecl PyVTKMutableObject_RichCompare(struct _object *,struct _object *,int)" (?PyVTKMutableObject_RichCompare@@YAPEAU_object@@PEAU1@0H@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GenericGetAttr referenced in function "struct _object * __cdecl PyVTKMutableObject_GetAttr(struct _object *,struct _object *)" (?PyVTKMutableObject_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_HashNotImplemented referenced in function "void __cdecl `dynamic initializer for 'PyVTKMutableObject_Type''(void)" (??__EPyVTKMutableObject_Type@@YAXXZ) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_CoerceEx referenced in function "int __cdecl PyVTKMutableObject_Coerce(struct _object * *,struct _object * *)" (?PyVTKMutableObject_Coerce@@YAHPEAPEAU_object@@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_Free referenced in function "void __cdecl `dynamic initializer for 'PyVTKMutableObject_Type''(void)" (??__EPyVTKMutableObject_Type@@YAXXZ) PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyObject_Free PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp__PyObject_New referenced in function "struct _object * __cdecl PyVTKMutableObject_New(struct _typeobject *,struct _object *,struct _object *)" (?PyVTKMutableObject_New@@YAPEAU_object@@PEAU_typeobject@@PEAU1@1@Z) PyVTKSpecialObject.cxx.obj : error LNK2001: unresolved external symbol __imp__PyObject_New PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Add referenced in function "struct _object * __cdecl PyVTKMutableObject_Add(struct _object *,struct _object *)" (?PyVTKMutableObject_Add@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Subtract referenced in function "struct _object * __cdecl PyVTKMutableObject_Subtract(struct _object *,struct _object *)" (?PyVTKMutableObject_Subtract@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Multiply referenced in function "struct _object * __cdecl PyVTKMutableObject_Multiply(struct _object *,struct _object *)" (?PyVTKMutableObject_Multiply@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Divide referenced in function "struct _object * __cdecl PyVTKMutableObject_Divide(struct _object *,struct _object *)" (?PyVTKMutableObject_Divide@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_FloorDivide referenced in function "struct _object * __cdecl PyVTKMutableObject_FloorDivide(struct _object *,struct _object *)" (?PyVTKMutableObject_FloorDivide@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_TrueDivide referenced in function "struct _object * __cdecl PyVTKMutableObject_TrueDivide(struct _object *,struct _object *)" (?PyVTKMutableObject_TrueDivide@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Remainder referenced in function "struct _object * __cdecl PyVTKMutableObject_Remainder(struct _object *,struct _object *)" (?PyVTKMutableObject_Remainder@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Divmod referenced in function "struct _object * __cdecl PyVTKMutableObject_Divmod(struct _object *,struct _object *)" (?PyVTKMutableObject_Divmod@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Power referenced in function "struct _object * __cdecl PyVTKMutableObject_Power(struct _object *,struct _object *,struct _object *)" (?PyVTKMutableObject_Power@@YAPEAU_object@@PEAU1@00@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Negative referenced in function "struct _object * __cdecl PyVTKMutableObject_Negative(struct _object *)" (?PyVTKMutableObject_Negative@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Positive referenced in function "struct _object * __cdecl PyVTKMutableObject_Positive(struct _object *)" (?PyVTKMutableObject_Positive@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Absolute referenced in function "struct _object * __cdecl PyVTKMutableObject_Absolute(struct _object *)" (?PyVTKMutableObject_Absolute@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Invert referenced in function "struct _object * __cdecl PyVTKMutableObject_Invert(struct _object *)" (?PyVTKMutableObject_Invert@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Lshift referenced in function "struct _object * __cdecl PyVTKMutableObject_Lshift(struct _object *,struct _object *)" (?PyVTKMutableObject_Lshift@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Rshift referenced in function "struct _object * __cdecl PyVTKMutableObject_InPlaceRshift(struct _object *,struct _object *)" (?PyVTKMutableObject_InPlaceRshift@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_And referenced in function "struct _object * __cdecl PyVTKMutableObject_InPlaceAnd(struct _object *,struct _object *)" (?PyVTKMutableObject_InPlaceAnd@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Xor referenced in function "struct _object * __cdecl PyVTKMutableObject_InPlaceXor(struct _object *,struct _object *)" (?PyVTKMutableObject_InPlaceXor@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Or referenced in function "struct _object * __cdecl PyVTKMutableObject_InPlaceOr(struct _object *,struct _object *)" (?PyVTKMutableObject_InPlaceOr@@YAPEAU_object@@PEAU1@0@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Index referenced in function "struct _object * __cdecl PyVTKMutableObject_Index(struct _object *)" (?PyVTKMutableObject_Index@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Int referenced in function "struct _object * __cdecl PyVTKMutableObject_Int(struct _object *)" (?PyVTKMutableObject_Int@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Long referenced in function "struct _object * __cdecl PyVTKMutableObject_Long(struct _object *)" (?PyVTKMutableObject_Long@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_Float referenced in function "struct _object * __cdecl PyVTKMutableObject_Float(struct _object *)" (?PyVTKMutableObject_Float@@YAPEAU_object@@PEAU1@@Z) PyVTKMutableObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyNumber_ToBase referenced in function "struct _object * __cdecl PyVTKMutableObject_Hex(struct _object *)" (?PyVTKMutableObject_Hex@@YAPEAU_object@@PEAU1@@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_ClearWeakRefs referenced in function "void __cdecl PyVTKObject_Delete(struct _object *)" (?PyVTKObject_Delete@@YAXPEAU_object@@@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_SetItem referenced in function "int __cdecl PyVTKObject_SetAttr(struct _object *,struct _object *,struct _object *)" (?PyVTKObject_SetAttr@@YAHPEAU_object@@00@Z) PyVTKTemplate.cxx.obj : error LNK2001: unresolved external symbol __imp_PyDict_SetItem PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyDict_DelItem referenced in function "int __cdecl PyVTKObject_SetAttr(struct _object *,struct _object *,struct _object *)" (?PyVTKObject_SetAttr@@YAHPEAU_object@@00@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyMethod_New referenced in function "struct _object * __cdecl PyVTKObject_GetAttr(struct _object *,struct _object *)" (?PyVTKObject_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyCFunction_Type referenced in function "struct _object * __cdecl PyVTKObject_GetAttr(struct _object *,struct _object *)" (?PyVTKObject_GetAttr@@YAPEAU_object@@PEAU1@0@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_RuntimeError referenced in function "int __cdecl PyVTKObject_SetAttr(struct _object *,struct _object *,struct _object *)" (?PyVTKObject_SetAttr@@YAHPEAU_object@@00@Z) PyVTKObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyExc_NotImplementedError referenced in function PyVTKObject_New PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyType_Ready referenced in function PyVTKSpecialType_New PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_ReprEnter referenced in function PyVTKSpecialObject_SequenceString PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_Py_ReprLeave referenced in function PyVTKSpecialObject_SequenceString PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_Concat referenced in function PyVTKSpecialObject_SequenceString PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyString_ConcatAndDel referenced in function PyVTKSpecialObject_Repr PyVTKSpecialObject.cxx.obj : error LNK2019: unresolved external symbol __imp_PyBaseObject_Type referenced in function PyVTKSpecialObject_Repr PyVTKTemplate.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_CallMethod referenced in function "struct _object * __cdecl PyVTKTemplate_HasKey(struct _object *,struct _object *)" (?PyVTKTemplate_HasKey@@YAPEAU_object@@PEAU1@0@Z) PyVTKTemplate.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_Size referenced in function "__int64 __cdecl PyVTKTemplate_Size(struct _object *)" (?PyVTKTemplate_Size@@YA_JPEAU_object@@@Z) PyVTKTemplate.cxx.obj : error LNK2019: unresolved external symbol __imp_PyObject_GetItem referenced in function "struct _object * __cdecl PyVTKTemplate_GetItem(struct _object *,struct _object *)" (?PyVTKTemplate_GetItem@@YAPEAU_object@@PEAU1@0@Z) bin\vtkWrappingPython27Core-pv4.2.dll : fatal error LNK1120: 123 unresolved externals LINK failed. with 1120 ninja: build stopped: subcommand failed. Classification: UNCLASSIFIED Caveats: NONE
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
