Search Criteria
Package Details: dynarmic 6.7.0-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/dynarmic.git (read-only, click to copy) |
---|---|
Package Base: | dynarmic |
Description: | An ARM dynamic recompiler |
Upstream URL: | https://github.com/lioncash/dynarmic |
Keywords: | emulation jit |
Licenses: | 0BSD |
Provides: | libdynarmic.so |
Submitter: | abouvier |
Maintainer: | abouvier |
Last Packager: | abouvier |
Votes: | 2 |
Popularity: | 0.022180 |
First Submitted: | 2022-07-26 15:45 (UTC) |
Last Updated: | 2024-03-08 14:36 (UTC) |
Dependencies (15)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR)
- libfmt.so (fmt-gitAUR, fmt9AUR, fmt10AUR, fmt)
- libZydis.so (zydis-gitAUR, zydis)
- llvm-libs (llvm-libs-rocm-gitAUR, llvm-libs-gitAUR)
- boost (boost-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- fmt (fmt-gitAUR) (make)
- llvm (llvm-rocm-gitAUR, llvm-gitAUR, llvm-minimal-gitAUR) (make)
- oaknut (oaknut-gitAUR) (make, aarch64)
- robin-map (make)
- xbyakAUR (xbyak-gitAUR) (make, x86_64)
- zydis (zydis-gitAUR) (make, x86_64)
- catch2 (catch2-gitAUR) (check)
- oaknut (oaknut-gitAUR) (check)
Required by (1)
- suyu-dev-git (make)
Latest Comments
« First ‹ Previous 1 2 3
abouvier commented on 2023-06-12 12:48 (UTC)
The error occurs when
-O3
is present in yourCXXFLAGS
(makepkg.conf
sets-O2
by default).gustafla commented on 2023-06-12 11:45 (UTC)
It's very late into the build, some safety warning turns into an error.
And similar thing repeated twice. I wonder how this machine differs from my other machine. They both run the same x86_64 Arch Linux.
gcc version 13.1.1 20230429 (GCC)
clang version 15.0.7
abouvier commented on 2023-06-09 15:44 (UTC)
And what is the error message? I don't have any.
gustafla commented on 2023-06-09 12:28 (UTC)
I had to edit the PKGBUILD and add
-DDYNARMIC_WARNINGS_AS_ERRORS = OFF \
. I think there used to be a different 'fix' for this issue but it's been removed from the package. I don't know why it fails to build on my laptop but not my desktop, but turning -Werror off worked.Ekim0789 commented on 2023-05-06 14:21 (UTC)
Thanks! I had to look into the code to figure out why it wasn't building for me so I figured I'd leave a comment to save the next person with the same issue some time.
abouvier commented on 2023-05-06 13:53 (UTC)
You will probably have this problem with every AUR packages depending on
extra/llvm
.Since you manually modified your PATH to prioritize another
llvm
package, you should also manually ignore that same package by using something like-DCMAKE_IGNORE_PREFIX_PATH=/opt/rocm
.Ekim0789 commented on 2023-05-06 03:36 (UTC)
Heads up, if you have /opt/rocm/bin in PATH this will fail to build. I think it has something to do with /opt/rocm/llvm/include/llvm-c/ also supplying Disassembler.h and Target.h
« First ‹ Previous 1 2 3