* external.h (Elf32_External_Chdr): New.
(Elf64_External_Chdr): Likewise.
* internal.h (Elf_Internal_Chdr): Likewise.
+2015-04-03 H.J. Lu <hongjiu.lu@intel.com>
+
+ * external.h (Elf32_External_Chdr): New.
+ (Elf64_External_Chdr): Likewise.
+ * internal.h (Elf_Internal_Chdr): Likewise.
+
2015-03-26 H.J. Lu <hongjiu.lu@intel.com>
* common.h (ELFOSABI_CLOUDABI): New.
unsigned char sh_entsize[8]; /* Entry size if section holds table */
} Elf64_External_Shdr;
+/* Compression header */
+
+typedef struct {
+ unsigned char ch_type[4]; /* Type of compression */
+ unsigned char ch_size[4]; /* Size of uncompressed data in bytes */
+ unsigned char ch_addralign[4]; /* Alignment of uncompressed data */
+} Elf32_External_Chdr;
+
+typedef struct {
+ unsigned char ch_type[8]; /* Type of compression */
+ unsigned char ch_size[8]; /* Size of uncompressed data in bytes */
+ unsigned char ch_addralign[8]; /* Alignment of uncompressed data */
+} Elf64_External_Chdr;
+
/* Symbol table entry */
typedef struct {
unsigned char *contents; /* Section contents. */
} Elf_Internal_Shdr;
+/* Compression header */
+
+typedef struct elf_internal_chdr {
+ unsigned int ch_type; /* Type of compression */
+ bfd_size_type ch_size; /* Size of uncompressed data in bytes */
+ bfd_vma ch_addralign; /* Alignment of uncompressed data */
+} Elf_Internal_Chdr;
+
/* Symbol table entry */
struct elf_internal_sym {