diff options
author | Brad King <brad.king@kitware.com> | 2008-03-02 21:19:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-03-02 21:19:40 (GMT) |
commit | f42c3de1d73025613e47584f2749ebe1ca7ed396 (patch) | |
tree | 55e6dd12b1a51b72149fa5f6cd76a9a5c8514afa /Source/cmELF.h | |
parent | 34a338dcc13c520270d5e74ee8a9c953c9724d85 (diff) | |
download | CMake-f42c3de1d73025613e47584f2749ebe1ca7ed396.zip CMake-f42c3de1d73025613e47584f2749ebe1ca7ed396.tar.gz CMake-f42c3de1d73025613e47584f2749ebe1ca7ed396.tar.bz2 |
BUG: A few more corrections for cmELF
- Add os-specific and processor-specific file types
- Add more error strings for invalid files.
- Byte order of header fields does not always match encoding
Diffstat (limited to 'Source/cmELF.h')
-rw-r--r-- | Source/cmELF.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmELF.h b/Source/cmELF.h index 38f1462..9e4575b 100644 --- a/Source/cmELF.h +++ b/Source/cmELF.h @@ -51,7 +51,9 @@ public: FileTypeRelocatableObject, FileTypeExecutable, FileTypeSharedLibrary, - FileTypeCore + FileTypeCore, + FileTypeSpecificOS, + FileTypeSpecificProc }; /** Represent string table entries. */ |