| ... | @@ -300,10 +300,14 @@ pub const SHT_LOOS = 0x60000000; | ... | @@ -300,10 +300,14 @@ pub const SHT_LOOS = 0x60000000; |
| 300 | pub const SHT_HIOS = 0x6fffffff; | 300 | pub const SHT_HIOS = 0x6fffffff; |
| 301 | /// Start of processor-specific | 301 | /// Start of processor-specific |
| 302 | pub const SHT_LOPROC = 0x70000000; | 302 | pub const SHT_LOPROC = 0x70000000; |
| | 303 | /// Unwind information |
| | 304 | pub const SHT_X86_64_UNWIND = 0x70000001; |
| 303 | /// End of processor-specific | 305 | /// End of processor-specific |
| 304 | pub const SHT_HIPROC = 0x7fffffff; | 306 | pub const SHT_HIPROC = 0x7fffffff; |
| 305 | /// Start of application-specific | 307 | /// Start of application-specific |
| 306 | pub const SHT_LOUSER = 0x80000000; | 308 | pub const SHT_LOUSER = 0x80000000; |
| | 309 | /// LLVM address-significance table |
| | 310 | pub const SHT_LLVM_ADDRSIG = 0xfff4c03; |
| 307 | /// End of application-specific | 311 | /// End of application-specific |
| 308 | pub const SHT_HIUSER = 0xffffffff; | 312 | pub const SHT_HIUSER = 0xffffffff; |
| 309 | | 313 | |
| ... | @@ -1632,6 +1636,9 @@ pub const SHF_TLS = 0x400; | ... | @@ -1632,6 +1636,9 @@ pub const SHF_TLS = 0x400; |
| 1632 | /// Identifies a section containing compressed data. | 1636 | /// Identifies a section containing compressed data. |
| 1633 | pub const SHF_COMPRESSED = 0x800; | 1637 | pub const SHF_COMPRESSED = 0x800; |
| 1634 | | 1638 | |
| | 1639 | /// Not to be GCed by the linker |
| | 1640 | pub const SHF_GNU_RETAIN = 0x200000; |
| | 1641 | |
| 1635 | /// This section is excluded from the final executable or shared library. | 1642 | /// This section is excluded from the final executable or shared library. |
| 1636 | pub const SHF_EXCLUDE = 0x80000000; | 1643 | pub const SHF_EXCLUDE = 0x80000000; |
| 1637 | | 1644 | |