From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eZ1XB-00036E-R4 for qemu-devel@nongnu.org; Tue, 09 Jan 2018 16:34:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eZ1XB-0006P2-6y for qemu-devel@nongnu.org; Tue, 09 Jan 2018 16:34:13 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:43783) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eZ1XB-0006OC-0i for qemu-devel@nongnu.org; Tue, 09 Jan 2018 16:34:13 -0500 Received: by mail-wm0-x242.google.com with SMTP id g1so5217923wmg.2 for ; Tue, 09 Jan 2018 13:34:12 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1514940265-18093-3-git-send-email-mjc@sifive.com> References: <1514940265-18093-1-git-send-email-mjc@sifive.com> <1514940265-18093-3-git-send-email-mjc@sifive.com> From: Alistair Francis Date: Tue, 9 Jan 2018 13:33:41 -0800 Message-ID: Content-Type: text/plain; charset="UTF-8" Subject: Re: [Qemu-devel] [PATCH v1 02/21] RISC-V ELF Machine Definition List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Clark Cc: "qemu-devel@nongnu.org Developers" , Bastian Koppelmann , Sagar Karandikar On Tue, Jan 2, 2018 at 4:44 PM, Michael Clark wrote: > Define RISC-V ELF machine EM_RISCV 243 > > Signed-off-by: Michael Clark Reviewed-by: Alistair Francis Alistair > --- > include/elf.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/elf.h b/include/elf.h > index e8a515c..8e457fc 100644 > --- a/include/elf.h > +++ b/include/elf.h > @@ -112,6 +112,8 @@ typedef int64_t Elf64_Sxword; > > #define EM_UNICORE32 110 /* UniCore32 */ > > +#define EM_RISCV 243 /* RISC-V */ > + > /* > * This is an interim value that we will use until the committee comes > * up with a final number. > -- > 2.7.0 > >