Search Criteria
Package Details: openmp-extras 5.2.3-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/openmp-extras.git (read-only, click to copy) |
|---|---|
| Package Base: | openmp-extras |
| Description: | Radeon Open Compute - openmp-extras with flang (OpenMP AMD GPU Offloading) |
| Upstream URL: | https://github.com/ROCm-Developer-Tools/aomp |
| Licenses: | custom:Apache 2.0 with LLVM Exception |
| Submitter: | acxz |
| Maintainer: | None |
| Last Packager: | tpkessler |
| Votes: | 1 |
| Popularity: | 0.000000 |
| First Submitted: | 2020-11-11 22:28 (UTC) |
| Last Updated: | 2022-08-29 17:36 (UTC) |
Dependencies (6)
- hsa-rocr (opencl-amdAUR)
- rocm-llvm (opencl-amd-devAUR)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- python-pip (make)
- python-setuptools (make)
- python-wheel (make)
Required by (0)
Sources (12)
- aomp-5.2.0-extras-version-string.patch
- aomp-5.2.0-openmp-rocm_dir.patch
- aomp-5.2.3.tar.gz
- aomp-device-libs-5.2.3.tar.gz
- aomp-extras-5.2.0-rocm-dir-llvm.patch
- aomp-extras-5.2.3.tar.gz
- aomp-flang-decouple-out-dir-and-rocm-install.patch
- aomp-flang-libomp-path.patch
- aomp-openmp-buildpath.patch
- flang-5.2.3.tar.gz
- llvm-amdgpu-5.2.3.tar.gz
- llvm-project-hostrpc-fprintf-decl.patch
Latest Comments
me4twb commented on 2025-10-23 12:57 (UTC)
CMake Error at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.5 has been removed from CMake.
Update the VERSION argument <min> value. Or, use the <min>...<max> syntax to tell CMake that the project requires at least <min> but has been updated to work with policies introduced by <max> or earlier.
Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
chb commented on 2024-11-27 07:49 (UTC) (edited on 2024-11-27 07:52 (UTC) by chb)
Not sure if this is something I've done by accident but my hsa.h is in hsa/hsa.h so I've needed to update all the includes for that and hsa_ext_amd.h
Done using:
find "/home/c/.cache/yay/openmp-extras/" -type f \( -name '*.cpp' -or -name '*.h' \) | while read file; do # Check if the file contains the specified include patterns if grep -q '#include <hsa' "$file"; then echo "Updating file: $file" # Update the include paths for hsa headers sed -i 's|#include <hsa.h>|#include "hsa/hsa.h"|g' "$file" sed -i 's|#include <hsa_ext_amd.h>|#include "hsa/hsa_ext_amd.h"|g' "$file" fi donedreieck commented on 2024-02-07 13:18 (UTC)
This should conflict with
rocm-llvm:Both install
/opt/rocm/llvm/:Regards!