================
@@ -983,6 +995,44 @@ llvm::Error
ProcessElfCore::ParseThreadContextsFromNoteSegment(
}
}
+bool ProcessElfCore::IsElf(const NT_FILE_Entry entry) {
+ const uint8_t elf_header[4] = {0x7f, 0x45, 0x4c,
+ 0x46}; // ELF file begin with this 4 bytes
----------------
clayborg wrote:
We have a ELF.h file you can get the magic bytes from:
```
#include "llvm/BinaryFormat/ELF.h"
```
Then you can use `llvm::ELF::ElfMagic`. They use it here:
```
bool ELFHeader::MagicBytesMatch(const uint8_t *magic) {
return memcmp(magic, ElfMagic, strlen(ElfMagic)) == 0;
}
```
https://github.com/llvm/llvm-project/pull/92078
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits