From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1apVfL-0000wY-7s for qemu-devel@nongnu.org; Mon, 11 Apr 2016 02:49:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1apVfH-0000Pz-Vx for qemu-devel@nongnu.org; Mon, 11 Apr 2016 02:49:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32799) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1apVfH-0000Pq-QW for qemu-devel@nongnu.org; Mon, 11 Apr 2016 02:49:39 -0400 From: Markus Armbruster References: <20160410192014.3685.18953.malonedeb@gac.canonical.com> <20160410200532.31829.74720.malone@soybean.canonical.com> Date: Mon, 11 Apr 2016 08:49:36 +0200 In-Reply-To: <20160410200532.31829.74720.malone@soybean.canonical.com> (iQQator's message of "Sun, 10 Apr 2016 20:05:32 -0000") Message-ID: <87mvp0prlr.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [Bug 1568589] Re: Compile for os x host failed List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: iQQator Cc: qemu-devel@nongnu.org, Bug 1568589 <1568589@bugs.launchpad.net> iQQator writes: > fix: http://patchwork.ozlabs.org/patch/603499/ This patch isn't correct. Quoting from its review: ivshmem.o should only be linked when CONFIG_EVENTFD is set. pci.mak has CONFIG_IVSHMEM=$(CONFIG_EVENTFD) The compile error shown above indicates CONFIG_EVENTFD=y for make (since ivshmem.o gets linked), but !defined(CONFIG_EVENTFD) for C (or else event_notifier_init_fd() would exist). Your build tree is messed up, or the makefiles are broken. Try starting over with a fresh build tree. End quote.