mirror of
https://github.com/containers/podman.git
synced 2025-08-24 01:50:58 +08:00
14 lines
233 B
Go
14 lines
233 B
Go
//go:build windows && arm64
|
|
|
|
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-aarch64w"
|
|
)
|
|
|
|
func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
|
|
// stub to fix compilation issues
|
|
opts := []string{}
|
|
return opts
|
|
}
|