Hi Frank, The easiest way to build OpenSWR is probably to use the SCons build instead of autotools. Here's a docker file we use to generate re-distributable libGL and libOSMesa binaries: https://github.com/chuckatkins/mesa-builds/blob/master/Dockerfile . In short though, you'll want to do the following:
git clone https://github.com/OpenSWR/openswr-mesa.git mesa-swr cd mesa-swr scons build=release texture_float=yes swr_arch=core-avx2 libgl-xlib osmesa The libgl-xlib target will create a build/linux-x86_64/gallium/targets/libgl-xlib/libGL.so.1.5 output and the osmesa target will create a build/linux-x86_64/gallium/targets/osmesa/libosmesa.so output. You can also change swr_arch=core-avx2 to swr_arch=avx if you want to build for AVX instead of AVX2. - Chuck On Tue, Dec 22, 2015 at 10:14 AM, Utkarsh Ayachit < [email protected]> wrote: > > Also, thank you for liaising with the OpenSWR team in order to check if > they support or plan supporting OSMESA. > > Frank, I am told that OpenSWR on Github should work with OSMesa. I > haven't tried it out myself, will give it a go once I get the a few > other issues ironed out. Just wanted to let you know if you wanted to > give it another go. > > Utkarsh > _______________________________________________ > 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 > > Search the list archives at: http://markmail.org/search/?q=ParaView > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview >
_______________________________________________ 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 Search the list archives at: http://markmail.org/search/?q=ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
