Replies: 1 comment 5 replies
-
There is support for |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am developing an application, that uses Magick.Net and is supposed to work with blazor hybrid. There is one issue. On code line. OpenCL.IsEnabled = true; it fails on macos. It says that dll q8-arm64 is not found. Which I understand, because mac uses it's in house chip based on arm64 architecture. But The application should work on multiple platforms including arm64 and x64 platforms. That's why I installed q8-AnyCPU in the hopes, that it would involve all of the architectures. But it seems like it's not working. From what I read in documentation it seems AnyCPU means either x86 or x64, but not arm64. Is there any workaround so I could use the same application on mac computers and Windows computers ? Worst case scenario I will just change out the nuget before deploying to mac, but it would be nice if there is some kind of solution besides this ?
Beta Was this translation helpful? Give feedback.
All reactions