From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpPWR-0007um-DV for qemu-devel@nongnu.org; Mon, 23 Jan 2012 14:25:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpPWQ-0003R9-2V for qemu-devel@nongnu.org; Mon, 23 Jan 2012 14:25:43 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:42602) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpPWP-0003Qa-HB for qemu-devel@nongnu.org; Mon, 23 Jan 2012 14:25:41 -0500 Message-ID: <4F1DB432.3060804@mail.berlios.de> Date: Mon, 23 Jan 2012 20:25:38 +0100 From: Stefan Weil MIME-Version: 1.0 References: <4F1DA926.4000709@siemens.com> <4F1DB21A.8090607@mail.berlios.de> <4F1DB2D0.9080301@siemens.com> In-Reply-To: <4F1DB2D0.9080301@siemens.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC][PATCH] signrom: Speed up checksum calculation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: qemu-devel Am 23.01.2012 20:19, schrieb Jan Kiszka: > On 2012-01-23 20:16, Stefan Weil wrote: >> Am 23.01.2012 19:38, schrieb Jan Kiszka: >> [snip] >> What about replacing the whole script by a python script? >> That would save about 6 more forks :-) > > I think we have no python dependency in the build system yet - while we > have for awk. That was also the original reason to go for a shell script. > > If the situation changed, I would not vote against python, for sure. > > Jan We do. Even configure will fail now without Python: if ! has $python; then echo "Python not found. Use --python=/path/to/python" exit 1 fi QEMU depends on Python = Python 2 for QAPI, tracing and maybe more. See scripts/*.py. Stefan