mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Check for the core type.
This commit is contained in:
parent
81a37c9668
commit
3b64f661db
1 changed files with 4 additions and 0 deletions
|
@ -226,6 +226,10 @@ public class ElfBinaryFile extends PlatformObject implements IBinaryFile,
|
|||
case Attribute.ELF_TYPE_OBJ:
|
||||
type = IBinaryFile.OBJECT;
|
||||
break;
|
||||
|
||||
case Attribute.ELF_TYPE_CORE:
|
||||
type = IBinaryFile.CORE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return type;
|
||||
|
|
Loading…
Add table
Reference in a new issue