Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{lib,vis}[GCC/13.3.0] pocl v6.0, VirtualGL v3.1.1 #21403

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions easybuild/easyconfigs/p/pocl/pocl-6.0-GCC-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# https://github.com/pocl/pocl/issues/1219
# "PoCL 3.1 supports LLVM only up to 15", so need 4.0 for working with Clang 16
easyblock = 'CMakeNinja'

name = 'pocl'
version = '6.0'

homepage = 'http://portablecl.org'
description = """PoCL is a portable open source (MIT-licensed) implementation
of the OpenCL standard (1.2 with some 2.0 features supported)."""

toolchain = {'name': 'GCC', 'version': '13.3.0'}

source_urls = ['https://github.com/pocl/pocl/archive/']
sources = ['v%(version)s.tar.gz']
patches = []
checksums = [
'de9710223fc1855f833dbbf42ea2681e06aa8ec0464f0201104dc80a74dfd1f2', # v6.0.tar.gz
]

builddependencies = [
('CMake', '3.29.3'),
('Ninja', '1.12.1'),
('pkgconf', '2.2.0'),
]

dependencies = [
('Clang', '18.1.8'),
('hwloc', '2.10.0'),
('libtool', '2.4.7'),
('libxml2', '2.12.7'),
]

separate_build_dir = True

# disable attempt to find an ICD loader, always build libOpenCL.so
configopts = "-DENABLE_ICD=0 -DINSTALL_OPENCL_HEADERS=1 "
# make sure we use the easybuild Clang
configopts += "-DWITH_LLVM_CONFIG=$EBROOTCLANG/bin/llvm-config -DSTATIC_LLVM=ON "
# avoid host CPU auto-detection (which may fail on recent CPUs)
configopts += "-DLLC_HOST_CPU=native "

sanity_check_paths = {
'files': ['bin/poclcc', 'lib64/libOpenCL.%s' % SHLIB_EXT],
'dirs': ['include/CL', 'lib64/pkgconfig'],
}

moduleclass = 'lib'
47 changes: 47 additions & 0 deletions easybuild/easyconfigs/v/VirtualGL/VirtualGL-3.1.1-GCC-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Contribution from the Crick HPC team
# uploaded by J. Sassmannshausen
# updated by Valentin Plugaru <[email protected]> 2019-09-26
# updated by Paul Melis <[email protected]> 2022-10-07, 2023-08-18

easyblock = 'CMakeMake'

name = 'VirtualGL'
version = '3.1.1'

homepage = 'https://virtualgl.org/'
description = """VirtualGL is an open source toolkit that gives any Linux or
Unix remote display software the ability to run OpenGL applications with full
hardware acceleration."""

toolchain = {'name': 'GCC', 'version': '13.3.0'}

source_urls = ['https://github.com/VirtualGL/virtualgl/archive/']
sources = ['%(version)s.tar.gz']
checksums = ['79c0d76993814d9ed9fdc29908de1cc6da08f41931bc8363084fdfae03f53ce8']
patches = []

builddependencies = [
('CMake', '3.29.3'),
('binutils', '2.42'),
]

dependencies = [
('libjpeg-turbo', '3.0.1'),
('Mesa', '24.1.3'),
('libGLU', '9.0.3'),
('pocl', '6.0'),
('X11', '20240607'),
]

local_binaries = [
'cpustat', 'glreadtest', 'glxinfo', 'glxspheres64', 'nettest', 'tcbench',
'vglclient', 'vglconfig', 'vglconnect', 'vglgenkey', 'vgllogin', 'vglrun',
'vglserver_config'
]

sanity_check_paths = {
'files': ['bin/%s' % x for x in local_binaries],
'dirs': ['lib64', 'share', 'include'],
}

moduleclass = 'vis'
Loading