<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body style='font-size: 10pt; font-family: Verdana,Geneva,sans-serif'>
<p id="reply-intro">On 2021-03-18 19:45, Aki Ketolainen wrote:</p>
<blockquote type="cite" style="padding: 0 0.4em; border-left: #1010ff 2px solid; margin: 0">
<div id="replybody1">
<div style="font-size: 10pt; font-family: Verdana,Geneva,sans-serif;">
<p><br /></p>
<p>Hi,</p>
<p>I got this problem resolved by compiling llvm 7.0.1 on CentOS 8.3. It's a pretty big task as the disk space that <br />it took was 30 gigs for the compilation and 22 gigs for the target install part. I chose the 7.0.1 version because <br />that's what I had on CentOS 7.</p>
<p>Now I don't get that "Assertion 'get() != pointer()' failed" error but the Kivy application opens and works correctly in the X2go session.</p>
<p>Best regards,</p>
<p>Aki Ketolainen<br />Turku, Finland</p>
</div>
</div>
<br />
<div class="pre" style="margin: 0; padding: 0; font-family: monospace">_______________________________________________<br />mesa-users mailing list<br /><a href="mailto:mesa-users@lists.freedesktop.org">mesa-users@lists.freedesktop.org</a><br /><a href="https://lists.freedesktop.org/mailman/listinfo/mesa-users" target="_blank" rel="noopener noreferrer">https://lists.freedesktop.org/mailman/listinfo/mesa-users</a></div>
</blockquote>
<p><br /></p>
<p>Hi,</p>
<p>It's possible to make the llvm disk space requirements much lower with the following cmake options and <br />using strip on the compiled files:<br /><br />tar -xf /root/llvm-7.0.1.src.tar.xz --no-same-owner<br />cd /root/llvm-7.0.1.src<br />mkdir build<br />cd build<br />cmake -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=on /root/llvm-7.0.1.src<br />cmake --build .<br />cmake -DCMAKE_INSTALL_PREFIX=/opt/llvm/7.0.1 -P cmake_install.cmake<br />strip /opt/llvm/7.0.1/bin/*<br />strip --strip-unneeded /opt/llvm/7.0.1/lib/*.a /opt/llvm/7.0.1/lib/*.so.*<br /><br />Best regards,<br /><br />Aki Ketolainen<br />Turku, Finland</p>
</body></html>