Makefile 在没有图形支持的情况下,如何强制生成?

Makefile 在没有图形支持的情况下,如何强制生成?,makefile,graphics,qemu,redox-os,Makefile,Graphics,Qemu,Redox Os,在redox操作系统上,我必须运行makeqemu才能运行redox操作系统。 但是我需要在没有图形支持的情况下运行它,使qemu-nographic或使qemu-curses不受支持 nasm -f bin -o build/harddrive.bin -D ARCH_x86_64 -ibootloader/x86_64/ bootloader/x86_64/harddrive.asm SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-x86_64 -serial mo

在redox操作系统上,我必须运行makeqemu才能运行redox操作系统。 但是我需要在没有图形支持的情况下运行它,使qemu-nographic或使qemu-curses不受支持

nasm -f bin -o build/harddrive.bin -D ARCH_x86_64 -ibootloader/x86_64/ bootloader/x86_64/harddrive.asm
SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-x86_64 -serial mon:stdio -d cpu_reset -d guest_errors -smp 4 -m 1024 -machine q35 -net nic,model=e1000 -net user -net dump,file=build/network.pcap -device nec-usb-xhci,id=xhci -device usb-tablet,bus=xhci.0 -drive file=build/harddrive.bin,format=raw
Unable to init server: Could not connect: Connection refused
gtk initialization failed
make: *** [mk/qemu.mk:32: qemu] Error 1

在不使用KVM内核虚拟机或图形的情况下使用QEMU启动

使qemu kvm=no vga=no

我刚加的