diff options
| author | grischka <grischka> | 2011-07-14 19:35:20 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2011-07-14 19:35:20 +0200 |
| commit | adc80009c8cc71f5dc01192ea116e9d97f417767 (patch) | |
| tree | fb0b33e3ee00fa97a79eb7d7e1725f85cfcc13a3 /elf.h | |
| parent | 8d107d9ffd8126d82b1c56be47431a6bcef39f08 (diff) | |
| download | tinycc-adc80009c8cc71f5dc01192ea116e9d97f417767.tar.gz tinycc-adc80009c8cc71f5dc01192ea116e9d97f417767.tar.bz2 | |
elf.h: define SHF_MERGE etc.
Diffstat (limited to 'elf.h')
| -rw-r--r-- | elf.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -348,6 +348,17 @@ typedef struct #define SHF_EXECINSTR (1 << 2) /* Executable */ #define SHF_MASKPROC 0xf0000000 /* Processor-specific */ +#define SHF_MERGE 0x10 +#define SHF_STRINGS 0x20 +#define SHF_INFO_LINK 0x40 +#define SHF_LINK_ORDER 0x80 +#define SHF_OS_NONCONFORMING 0x100 +#define SHF_GROUP 0x200 +#define SHF_TLS 0x400 +#define SHF_MASKOS 0x0ff00000 +#define SHF_ORDERED 0x40000000 +#define SHF_EXCLUDE 0x80000000 + /* Symbol table entry. */ typedef struct |
