-
Notifications
You must be signed in to change notification settings - Fork 781
{lib}[GCC/14.2.0] pocl v7.0 #23615
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
Merged
Crivella
merged 6 commits into
easybuilders:develop
from
sara-nl:20250808143338_new_pr_pocl70
Sep 15, 2025
Merged
{lib}[GCC/14.2.0] pocl v7.0 #23615
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c63012a
adding easyconfigs: pocl-7.0-GCC-14.2.0.eb
paulmelis d734dd8
Fix whitespace
paulmelis 011d29e
Only use LLVM as build dependency
paulmelis 333ce6d
Update LLVM version
paulmelis ca65ac9
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
paulmelis 15d8bca
Update easybuild/easyconfigs/p/pocl/pocl-7.0-GCC-14.2.0.eb
paulmelis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # 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 = '7.0' | ||
|
|
||
| homepage = 'http://portablecl.org' | ||
| description = """PoCL is a conformant implementation (for CPU and Level Zero GPU targets) of | ||
| the OpenCL 3.0 standard which can be easily adapted for new targets.""" | ||
|
|
||
| toolchain = {'name': 'GCC', 'version': '14.2.0'} | ||
|
|
||
| source_urls = ['https://github.com/pocl/pocl/archive/'] | ||
| sources = ['v%(version)s.tar.gz'] | ||
| checksums = [ | ||
| 'f55caba8c3ce12bec7b683ce55104c7555e19457fc2ac72c6f035201e362be08', # v7.0.tar.gz | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.31.3'), | ||
| ('Ninja', '1.12.1'), | ||
| ('pkgconf', '2.3.0'), | ||
| ('LLVM', '20.1.7'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('hwloc', '2.11.2'), | ||
| ('libtool', '2.5.4'), | ||
| ('libxml2', '2.13.4'), | ||
| ] | ||
|
|
||
| # 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=$EBROOTLLVM/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'], | ||
| } | ||
|
|
||
| sanity_check_commands = [ | ||
| 'poclcc -h', | ||
| ] | ||
|
|
||
| moduleclass = 'lib' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.