You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello friends!
Currently, the kvm-ioctls project does not support the mips64 architecture. If I need to adapt the mips64 architecture, what changes do I need to make to the project?
The text was updated successfully, but these errors were encountered:
Hey @qinzhiben11 we've been adding functionality to the kvm-ioctls crate on an "as-needed" basis. Adding support for a new architecture is a bit trickier, so I would say that the following steps are needed:
Add a CI that runs the tests on that architecture.
Make sure that the build works on mips64 (it is likely that there are methods that are not using conditional compilation when that is needed). Fix any errors that result from running the CI on the new platform.
Add the functionality that you need from kvm-ioctls. This might mean adding new methods, or adapt the existing ioctls such that they work on the targeted platform.
Hello friends!
Currently, the kvm-ioctls project does not support the mips64 architecture. If I need to adapt the mips64 architecture, what changes do I need to make to the project?
The text was updated successfully, but these errors were encountered: