mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: e/Embree/Embree-3.2.0-intel-2017a.eb new file: f/freeglut/freeglut-3.0.0-intel-2017a-Mesa-18.1.3.eb new file: l/LAMMPS/LAMMPS-22Jun2018-foss-2017a.eb new file: l/LAMMPS/LAMMPS-22Jun2018-foss-2017a.patch new file: l/LLVM/LLVM-6.0.0-Py-2.7.eb new file: l/LLVM/LLVM-6.0.1-GCC-6.3.0-2.27.eb new file: m/Mesa/Mesa-18.1.3-intel-2017a.eb new file: o/OSPRay/OSPRay-1.6.1-intel-2017a.eb new file: o/OpenFOAM/OpenFOAM-5.0-intel-2017a.eb new file: p/ParaView/ParaView-5.4.1-Qt.patch new file: p/ParaView/ParaView-5.4.1-intel-2017a-mpi.eb new file: p/ParaView/ParaView-5.5.2-intel-2017.patch new file: p/ParaView/ParaView-5.5.2-intel-2017a-mpi-OSPRay.eb new file: s/SCOTCH/SCOTCH-6.0.5a-intel-2017a.eb deleted: l/LLVM/LLVM-6.0.0-GCC-6.3.0-2.27.eb Former-commit-id: a61c77eba93686847c3adfbc5a1df86bbb15366f
68 lines
2.4 KiB
Plaintext
68 lines
2.4 KiB
Plaintext
# the purpose of the easyconfig is to build a Mesa for software rendering,
|
|
# not hardware rendering. This means you want at least SSE4.2. We build:
|
|
# - llvmpipe: the high-performance Gallium LLVM driver
|
|
# - swr: Intel's OpenSWR
|
|
# it will try to use the llvmpipe by default. It you want swr, do:
|
|
# GALLIUM_DRIVER=swr
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'Mesa'
|
|
version = '18.1.3'
|
|
|
|
homepage = 'http://www.mesa3d.org/'
|
|
description = """Mesa is an open-source implementation of the OpenGL specification -
|
|
a system for rendering interactive 3D graphics."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017a'}
|
|
# swr detects and builds parts specific for AVX and AVX2. If we use
|
|
# -xHost, this always gets overwritten and will fail.
|
|
toolchainopts = {'optarch': False}
|
|
|
|
sources = [SOURCELOWER_TAR_XZ]
|
|
source_urls = [
|
|
'https://mesa.freedesktop.org/archive/',
|
|
'https://mesa.freedesktop.org/archive/%(version)s',
|
|
'ftp://ftp.freedesktop.org/pub/mesa/%(version)s',
|
|
'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s',
|
|
]
|
|
#patches = ['Mesa-17.0.2_fix-strip-llvm-flags.patch']
|
|
|
|
builddependencies = [
|
|
('flex', '2.6.3', '', True),
|
|
('Bison', '3.0.4', '', True),
|
|
('Autotools', '20150215', '', True),
|
|
('pkg-config', '0.29.2', '', True),
|
|
('Mako', '1.0.6', '-Python-2.7.13', True),
|
|
('libxml2', '2.9.4', '-Python-2.7.13', True),
|
|
]
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11', '', True),
|
|
('nettle', '3.3'),
|
|
('libdrm', '2.4.76', '', True),
|
|
('LLVM', '6.0.1', '', ('GCC', '6.3.0-2.27')),
|
|
('X11', '20170314', '', True),
|
|
('expat', '2.2.0', '', True),
|
|
]
|
|
|
|
# GLU is not part anymore of Mesa package!
|
|
configopts = " --disable-osmesa --enable-gallium-osmesa --enable-gallium-llvm --enable-glx --disable-dri"
|
|
configopts += " --disable-gbm --disable-driglx-direct --with-gallium-drivers='swrast,swr' --disable-egl"
|
|
configopts += " --with-osmesa-bits=32 --enable-texture-float --enable-llvm-shared-libs "
|
|
|
|
buildopts = 'V=1'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/libGL.%s' % SHLIB_EXT, 'lib/libOSMesa.%s' % SHLIB_EXT,
|
|
'lib/libGLESv1_CM.%s' % SHLIB_EXT, 'lib/libGLESv2.%s' % SHLIB_EXT,
|
|
'include/GL/glext.h', 'include/GL/gl_mangle.h',
|
|
'include/GL/glx.h', 'include/GL/osmesa.h',
|
|
'include/GL/gl.h', 'include/GL/glxext.h',
|
|
'include/GL/glx_mangle.h', 'include/GLES/gl.h',
|
|
'include/GLES2/gl2.h', 'include/GLES3/gl3.h'],
|
|
'dirs': []
|
|
}
|
|
|
|
moduleclass = 'vis'
|