diff options
author | Ian Lance Taylor <ian@airs.com> | 2009-03-20 23:37:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2009-03-20 23:37:50 +0000 |
commit | 2e7a4dfe356485e3d14ec2b73b405f016336fcd2 (patch) | |
tree | 076346caca175aea33fc8058d499956c1bc49f1f /include | |
parent | d351e41f278158d1b8219d523b0fa03c02b76189 (diff) | |
download | gdb-2e7a4dfe356485e3d14ec2b73b405f016336fcd2.tar.gz |
include/elf:
* common.h (SHT_GNU_INCREMENTAL_INPUTS): Define.
elfcpp:
* elfcpp.h (SHT_GNU_INCREMENTAL_INPUTS): Define.
gold:
* incremental.cc: New file.
* Makefile.am (CCFILES): Add incremental.cc.
* Makefile.in: Rebuild.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 2fb5c5ef85a..e69d3251762 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2009-03-20 Mikolaj Zalewski <mikolajz@google.com> + + * common.h (SHT_GNU_INCREMENTAL_INPUTS): Define. + 2009-03-14 Mark Kettenis <kettenis@gnu.org> * common.h (NT_OPENBSD_PROCINFO, NT_OPENBSD_AUXV) diff --git a/include/elf/common.h b/include/elf/common.h index 57c055b8568..75a62329199 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -397,6 +397,7 @@ #define SHT_LOOS 0x60000000 /* First of OS specific semantics */ #define SHT_HIOS 0x6fffffff /* Last of OS specific semantics */ +#define SHT_GNU_INCREMENTAL_INPUTS 0x6fff4700 /* incremental build data */ #define SHT_GNU_ATTRIBUTES 0x6ffffff5 /* Object attributes */ #define SHT_GNU_HASH 0x6ffffff6 /* GNU style symbol hash table */ #define SHT_GNU_LIBLIST 0x6ffffff7 /* List of prelink dependencies */ |