[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-discuss] Compiling custom QEMU fails
From: |
Peter Maydell |
Subject: |
Re: [Qemu-discuss] Compiling custom QEMU fails |
Date: |
Thu, 18 Sep 2014 14:23:54 -0700 |
On 18 September 2014 14:09, Max Gorley <address@hidden> wrote:
> Here is the full output (starting with shell):
>
> address@hidden:~/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