1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix PR 58082

This commit is contained in:
Alain Magloire 2004-04-14 17:56:18 +00:00
parent 358bcc3424
commit 711c7669b5
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-04-14 Alain Magloire
Fix PR 58082, with Patch from Jon Beniston
* utils/org/eclipse/cdt/utils/elf/Elf.java
2004-04-13 David Inglis
Since the binary runner and the CModelManager adds binarys we need to make sure

View file

@ -96,6 +96,7 @@ public class Elf {
public final static int EM_M32R = 88;
public final static int EM_MN10300 = 89;
public final static int EM_MN10200 = 90;
public final static int EM_EXCESS = 111;
public final static int EM_CYGNUS_POWERPC = 0x9025;
public final static int EM_CYGNUS_M32R = 0x9041;
public final static int EM_CYGNUS_V850 = 0x9080;
@ -791,6 +792,9 @@ 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$
break;
case Elf.ELFhdr.EM_NONE:
default:
attrib.cpu = "none"; //$NON-NLS-1$