From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jvwkw-0005B0-1N for qemu-devel@nongnu.org; Tue, 13 May 2008 11:49:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jvwkt-0005AW-Sx for qemu-devel@nongnu.org; Tue, 13 May 2008 11:49:32 -0400 Received: from [199.232.76.173] (port=47267 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jvwkt-0005AR-QB for qemu-devel@nongnu.org; Tue, 13 May 2008 11:49:31 -0400 Received: from py-out-1112.google.com ([64.233.166.180]:4362) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Jvwkt-0005RA-DK for qemu-devel@nongnu.org; Tue, 13 May 2008 11:49:31 -0400 Received: by py-out-1112.google.com with SMTP id u52so2962639pyb.10 for ; Tue, 13 May 2008 08:49:29 -0700 (PDT) Message-ID: Date: Tue, 13 May 2008 11:49:28 -0400 From: "Ben Taylor" Subject: Re: [Qemu-devel] kqemu+linux-kernel-2.6.25 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <482857D2.2050505@kent.ac.uk> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Tue, May 13, 2008 at 10:11 AM, ISHWAR RATTAN wrote: > > > > On Mon, 12 May 2008, ISHWAR RATTAN wrote: > > > > > > > > On Mon, 12 May 2008, Ben Taylor wrote: > > > > > > > > > > > Ok after download ./configure end in error as: > > > > > > > > ./configure: line 358: unexpected EOF while looking for matching ``' > > > > ./configure: line 371: syntax error: unexpected end of file > > > > > > > > and line 358 given below looks correct to me.. > > > > > > > > osrel=`uname -r | nawk -F . '{ printf("%d\n", $1 * 100 + $2); }'` > > > > > > > > > > The problem is in line 34. the line looks like: > > > > > > cpu="`isainfo | cut -f1 -d\ | sed 's,amd64,x86_64,'" > > > > > > but in fact should look like: > > > > > > cpu="`isainfo | cut -f1 -d\ | sed 's,amd64,x86_64,'`" > > > > > > > > > > Ok. Now configure works but make all results in errori (same error that I > > see with stock kqemu-1.0.3-pre11: > > ... > > make[1]: Leaving directory `/media/sda6/home/ishwar/kqemu/common' > > make -C /lib/modules/2.6.25-0.slh.11-sidux-686/build M=`pwd` modules > > make[1]: Entering directory > `/usr/src/linux-headers-2.6.25-0.slh.11-sidux-686' > > CC [M] /media/sda6/home/ishwar/kqemu/kqemu-linux.o > > make[2]: *** No rule to make target > `/media/sda6/home/ishwar/kqemu/kqemu-mod-x86.o', needed by > `/media/sda6/home/ishwar/kqemu/kqemu-mod.o'. Stop. > > make[1]: *** [_module_/media/sda6/home/ishwar/kqemu] Error 2 > > make[1]: Leaving directory > `/usr/src/linux-headers-2.6.25-0.slh.11-sidux-686' > > make: *** [kqemu.ko] Error 2 > > > > > > linux: Linux tigaon 2.6.25-0.slh.11-sidux-686 #1 SMP PREEMPT (form uname > -a) > > gcc version: gcc version 4.2.3 (Debian 4.2.3-4) > > I just did ./configure and make all in the kqemu-source directory. The > error messages are reproduceable. > > -ishwar Ok. Let me research a little. Ben