From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19VEyw-0001F4-Cy for qemu-devel@nongnu.org; Wed, 25 Jun 2003 14:26:58 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19VEyu-0001EW-Us for qemu-devel@nongnu.org; Wed, 25 Jun 2003 14:26:57 -0400 Received: from ns.virtualhost.dk ([195.184.98.160] helo=virtualhost.dk) by monty-python.gnu.org with esmtp (Exim 4.20) id 19VEyu-0001EN-M2 for qemu-devel@nongnu.org; Wed, 25 Jun 2003 14:26:56 -0400 Date: Wed, 25 Jun 2003 20:26:34 +0200 From: Jens Axboe Message-ID: <20030625182634.GI821@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: Jens Axboe Subject: [Qemu-devel] 0.4 link error (and patch) Reply-To: qemu-devel@nongnu.org List-Id: List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , To: fabrice.bellard@free.fr, qemu-devel@nongnu.org Hi Fabrice, I need this to link 0.4. And I tried building vl, it has inline x86 asm (rdtsc) so I figure it's not ready for non-x86 prime-time yet :). Should that be converted to use the helper-i386 helper? Index: Makefile =================================================================== RCS file: /cvsroot/qemu/qemu/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- Makefile 25 Jun 2003 16:08:39 -0000 1.38 +++ Makefile 25 Jun 2003 18:24:05 -0000 @@ -152,8 +152,8 @@ rm -f $@ $(AR) rcs $@ $(LIBOBJS) -dyngen: dyngen.c - $(HOST_CC) -O2 -Wall -g $< -o $@ +dyngen: dyngen.c thunk.o + $(HOST_CC) -O2 -Wall -g $^ -o $@ translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h -- Jens Axboe