From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKs3b-0008Gl-MW for qemu-devel@nongnu.org; Tue, 13 Jun 2017 16:04:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dKs3W-0005SQ-PI for qemu-devel@nongnu.org; Tue, 13 Jun 2017 16:04:55 -0400 Received: from mail-wr0-f195.google.com ([209.85.128.195]:32824) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dKs3W-0005SD-Ih for qemu-devel@nongnu.org; Tue, 13 Jun 2017 16:04:50 -0400 Received: by mail-wr0-f195.google.com with SMTP id v104so33330104wrb.0 for ; Tue, 13 Jun 2017 13:04:50 -0700 (PDT) References: <20170608184944.19406-1-mrolnik@gmail.com> <20170608184944.19406-9-mrolnik@gmail.com> From: Thomas Huth Message-ID: Date: Tue, 13 Jun 2017 22:04:48 +0200 MIME-Version: 1.0 In-Reply-To: <20170608184944.19406-9-mrolnik@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH RFC v19 08/13] target-avr: instruction decoder generator List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Rolnik , qemu-devel@nongnu.org Cc: Richard Henderson , anichang@protonmail.ch On 08.06.2017 20:49, Michael Rolnik wrote: > Signed-off-by: Michael Rolnik > Message-Id: <1471522070-77598-9-git-send-email-mrolnik@gmail.com> > Signed-off-by: Richard Henderson > --- > target/avr/cpugen/CMakeLists.txt | 38 +++ > target/avr/cpugen/README.md | 17 ++ > target/avr/cpugen/cpu/avr.yaml | 213 ++++++++++++++ > target/avr/cpugen/src/CMakeLists.txt | 62 ++++ > target/avr/cpugen/src/cpugen.cpp | 457 +++++++++++++++++++++++++++++ > target/avr/cpugen/src/utils.cpp | 26 ++ > target/avr/cpugen/src/utils.h | 78 +++++ > target/avr/cpugen/xsl/decode.c.xsl | 103 +++++++ > target/avr/cpugen/xsl/translate-inst.h.xsl | 118 ++++++++ > target/avr/cpugen/xsl/utils.xsl | 108 +++++++ CMake ... .cpp files ... .xsl files ... sounds strange ... are you sure this fits into the QEMU build environment? Thomas