<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta name=Title content=""><meta name=Keywords content=""><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:Calibri;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:Calibri;
        color:windowtext;}
span.msoIns
        {mso-style-type:export-only;
        mso-style-name:"";
        text-decoration:underline;
        color:teal;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:Calibri;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style></head><body bgcolor=white lang=EN-US link="#0563C1" vlink="#954F72"><div class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt'>Hi,<br><br>I’m trying to compile a version of Paraview that uses osmesa. I downloaded the ParaView soruce, and I’m following the directions from: <a href="http://www.paraview.org/Wiki/ParaView/ParaView_And_Mesa_3D">http://www.paraview.org/Wiki/ParaView/ParaView_And_Mesa_3D</a><o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><o:p> </o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>The tutorial gives a sample bash script for compiling with mesa. The only trouble that I’m having is that I don’t quite understand how to write a cmake shell script. I gave it a shot and it thinks my build directory is my source directory. I thought I passed the correct cmake variable to tell cmake where my source is and where my build directory are, but it can’t understand what I have provided. Below is the shell script that I’m trying to execute. Things above the space are my usual build options and things below are for Mesa. It can’t seem to understand those first 2 lines under ‘cmake’.<br><br>Any thoughts on what could be causing this issue?<br><br><o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>Shell file:<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><br>#!/bin/bash<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><o:p> </o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>cmake \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DCMAKE_SOURCE_DIR=/home/neal/software/ParaView_osMesa/Source \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DCMAKE_INSTALL_PREFIX=/home/neal/software/ParaView_osMesa/build \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DCMAKE_BUILD_TYPE:STRING=Release \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DCMAKE_SKIP_INSTALL_RPATH:BOOL=YES \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DBUILD_TESTING:BOOL=OFF \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_QT_GUI:BOOL=OFF \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DVTK_RENDERING_BACKEND=OpenGL2 \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_USE_MPI:BOOL=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_INSTALL_DEVELOPMENT_FILES:BOOL=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_CATALYST_ADAPTERS:BOOL=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_AnalyzeNIfTIIO:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_ArrowGlyph:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_CDIReader:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_EyeDomeLighting:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_GMVReader:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_GeodesicMeasurement:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_H5PartReader:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_InSituExodus:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_MantaView:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_Moments:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_NonOrthogonalSource:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_PacMan:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_PointSprite:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_RGBZView:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_SLACTools:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_SciberQuestToolKit:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_SierraPlotTools:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_StreamingParticles:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_SurfaceLIC:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_UncertaintyRendering:BOOL=FALSE \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_PLUGIN_AcceleratedAlgorithms:BOOL=OFF \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DVTK_USE_CXX11_FEATURES:BOOL=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><o:p> </o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DPARAVIEW_BUILD_QT_GUI=OFF \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DVTK_USE_X=OFF \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DOPENGL_INCLUDE_DIR=/home/neal/software/Mesa/build/include \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DOPENGL_gl_LIBRARY=/home/neal/software/Mesa/build/lib64/libOSMesa.so \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DOPENGL_glu_LIBRARY=/home/neal/software/Mesa/build/lib64/libGLU.so \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DVTK_OPENGL_HAS_OSMESA=ON \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DOSMESA_INCLUDE_DIR=/home/neal/software/Mesa/build/include \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  -DOSMESA_LIBRARY=/home/neal/software/Mesa/build/lib64/libOSMesa.so \<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>  $*<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><o:p> </o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>make -j20<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>make -j20 install<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'><br><br>Thank you,<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt'>Chris Neal<o:p></o:p></span></p></div></body></html>