diff --git a/core/org.eclipse.cdt.core/ChangeLog b/core/org.eclipse.cdt.core/ChangeLog index f78923d5fcb..a1bcb3add90 100644 --- a/core/org.eclipse.cdt.core/ChangeLog +++ b/core/org.eclipse.cdt.core/ChangeLog @@ -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 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 60596248faa..064cd14cdf9 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 @@ -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$