| author | Jon Beniston | 2012-08-25 16:34:28 (EDT) |
|---|---|---|
| committer | Marc-Andre Laperle | 2012-08-25 16:34:28 (EDT) |
| commit | bf815104841ff1b075c87008f0f5d9e58cf64936 (patch) (side-by-side diff) | |
| tree | 3f97d1dd54e3d190840cd421fb64988cfa7393c3 | |
| parent | 9e5dbc58530e047dc1b6e93d9ea461659e4f46d1 (diff) | |
| download | org.eclipse.cdt-bf815104841ff1b075c87008f0f5d9e58cf64936.zip org.eclipse.cdt-bf815104841ff1b075c87008f0f5d9e58cf64936.tar.gz org.eclipse.cdt-bf815104841ff1b075c87008f0f5d9e58cf64936.tar.bz2 | |
Bug 331574 - eXcess architecture is now named eSi-RISC
| -rw-r--r-- | core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/elf/Elf.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/elf/Elf.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/elf/Elf.java index 495f486..0d0aae0 100644 --- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/elf/Elf.java +++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/elf/Elf.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2009 QNX Software Systems and others. + * Copyright (c) 2000, 2012 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -133,6 +133,8 @@ public class Elf { public final static int EM_MSP430 = 105; public final static int EM_BLACKFIN = 106; public final static int EM_EXCESS = 111; + /** @since 5.5 */ + public final static int EM_ESIRISC = 111; public final static int EM_NIOSII = 113; public final static int EM_C166 = 116; public final static int EM_M16C = 117; @@ -803,8 +805,8 @@ public class Elf { case Elf.ELFhdr.EM_IQ2000 : attrib.cpu = "iq2000"; //$NON-NLS-1$ break; - case Elf.ELFhdr.EM_EXCESS : - attrib.cpu = "excess"; //$NON-NLS-1$ + case Elf.ELFhdr.EM_ESIRISC : + attrib.cpu = "esirisc"; //$NON-NLS-1$ break; case Elf.ELFhdr.EM_NIOSII : attrib.cpu = "alteranios2"; //$NON-NLS-1$ |

