From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj1EP-0006cC-Bs for qemu-devel@nongnu.org; Mon, 05 Oct 2015 04:34:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zj1EK-0007cD-US for qemu-devel@nongnu.org; Mon, 05 Oct 2015 04:34:49 -0400 Received: from lhrrgout.huawei.com ([194.213.3.17]:34524) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj1EK-0007bZ-MJ for qemu-devel@nongnu.org; Mon, 05 Oct 2015 04:34:44 -0400 From: Claudio Fontana Message-ID: <56123612.3090100@huawei.com> Date: Mon, 5 Oct 2015 10:34:26 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] implement smbios support for mach-virt: triggers usual QEMU makefile bug List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: "qemu-devel@nongnu.org" Hi Peter, The commit "smbios: implement smbios support for mach-virt" seems to cause the usual problem in QEMU's makefiles to trigger: hw/arm/virt.c:892: undefined reference to `smbios_set_defaults' hw/arm/virt.c:895: undefined reference to `smbios_get_tables' This is IIRC the consequence of adding CONFIG_SMBIOS=y to default-configs/rm-softmmu.mak, which is not picked up by the build system until a clean of the working tree has been done, right? This is worked around by $ git clean -d -x -f followed by reconfigure/rebuild. Just wanted to mention this on the list in case someone is looking to fix this longstanding issue.. Ciao, thanks Claudio