From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AM1mv-0008Mw-66 for qemu-devel@nongnu.org; Tue, 18 Nov 2003 04:04:45 -0500 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AM1m9-0006lj-BJ for qemu-devel@nongnu.org; Tue, 18 Nov 2003 04:04:28 -0500 Received: from [62.210.158.46] (helo=teheran.magic.fr) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AM1le-0006Hk-DL for qemu-devel@nongnu.org; Tue, 18 Nov 2003 04:03:26 -0500 Received: from 10.0.0.2 (ppp-181.net-555.magic.fr [62.210.255.181]) by teheran.magic.fr (8.11.6/8.11.2) with ESMTP id hAI81ve01145 for ; Tue, 18 Nov 2003 09:01:57 +0100 (CET) Subject: Re: [Qemu-devel] [ADD] tests for PPC target. From: "J. Mayer" In-Reply-To: <1069142555.13659.2265.camel@rapid> References: <20031117105133.7e856e56.Jens.Arm@gmx.de> <1069140512.14646.2174.camel@rapid> <1069142555.13659.2265.camel@rapid> Content-Type: text/plain Message-Id: <1069142803.14646.2268.camel@rapid> Mime-Version: 1.0 Date: 18 Nov 2003 09:06:43 +0100 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org target-ppc__tests__compile_ppc_test.diff Little shell script to compile test programs. diff -urNbB -x CVS qemu-current/target-ppc/tests/compile_ppc_test qemu/target-ppc/tests/compile_ppc_test --- qemu-current/target-ppc/tests/compile_ppc_test Thu Jan 1 01:00:00 1970 +++ qemu/target-ppc/tests/compile_ppc_test Wed Nov 12 10:37:56 2003 @@ -0,0 +1,6 @@ +#!/bin/sh + +powerpc-linux-gcc -g -O2 -Wall -nostdlib -nostdinc -nostartfiles -nodefaultlibs -o hello-ppc hello-ppc.c || exit 1; +powerpc-linux-gcc -g -O2 -Wall -nostdlib -nostdinc -nostartfiles -nodefaultlibs -o env-test env-test.c || exit 1; +powerpc-linux-gcc -g -O2 -Wall -nostdlib -nostdinc -nostartfiles -nodefaultlibs -o ppc-test ppc-test.c || exit 1; +gcc -g -O2 -Wall -o ctrace ctrace.c || exit 1;