On 18 September 2014 14:09, Max Gorley <go2...@msn.com> wrote: > Here is the full output (starting with shell): > > root@MAX-HP:~/qemu-pi/qemu# make > CC ui/gtk.o > ui/gtk.c: In function ‘gd_vc_vte_init’: > ui/gtk.c:1460:7: error: ‘VirtualConsole’ has no member named ‘vte’ > vc->vte.chr = chr; > ^ > ui/gtk.c:1463:41: error: ‘VirtualConsole’ has no member named ‘vte’ > vc->label = g_strdup_printf("%s", vc->vte.chr->label > ^ > ui/gtk.c:1464:37: error: ‘VirtualConsole’ has no member named ‘vte’ > ? vc->vte.chr->label : buffer); > ^ > ui/gtk.c:1467:7: error: ‘VirtualConsole’ has no member named ‘vte’ > vc->vte.terminal = vte_terminal_new(); > ^ > ui/gtk.c:1467:5: error: implicit declaration of function ‘vte_terminal_new’
[etc] You don't have the libvte library installed, and the QEMU tree you're using is too old to support compiling the GTK UI without VTE support (that was added in upstream commit bbbf9bfb9c27). I suggest you try either: (1) installing your system's libvte development packages (2) passing configure the --disable-gtk option to turn off the GTK frontend completely (you will probably get the SDL frontend instead) -- PMM