diff options
author | Rishi Raj <rishiraj45035@gmail.com> | 2023-07-06 18:44:40 +0530 |
---|---|---|
committer | Rishi Raj <rishiraj45035@gmail.com> | 2023-07-06 18:44:40 +0530 |
commit | 48ef456a8ec8b6df2f6e097a55872921b9f9b08c (patch) | |
tree | 99e30a500e266024ef915869a1c28c98d0684774 /gcc | |
parent | b13c0682ab290166a4a4c25513fec96beab5e211 (diff) | |
download | gcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.zip gcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.tar.gz gcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.tar.bz2 |
libiberty: lto: Addition of .symtab in elf file.
This patch is continutaion of previous patch (bypass-asm: Bypass assembler when
generating LTO object files.).
Now the emitted object file contains .symtab along with __gnu_lto_slim symbol.
gcc/ChangeLog:
* lto-object.cc (lto_obj_file_close):
include/ChangeLog:
* simple-object.h (simple_object_write_add_symbol):
libiberty/ChangeLog:
* simple-object-common.h (struct simple_object_symbol_struct):
* simple-object-elf.c (simple_object_elf_write_ehdr):
(simple_object_elf_write_symbol):
(simple_object_elf_write_to_file):
* simple-object.c (simple_object_start_write):
(simple_object_write_add_symbol):
(simple_object_release_write):
Signed-off-by: Rishi Raj <rishiraj45035@gmail.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/lto-object.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/lto-object.cc b/gcc/lto-object.cc index cb1c3a6..33eca5a 100644 --- a/gcc/lto-object.cc +++ b/gcc/lto-object.cc @@ -187,7 +187,8 @@ lto_obj_file_close (lto_file *file) int err; gcc_assert (lo->base.offset == 0); - + /*Add __gnu_lto_slim symbol*/ + simple_object_write_add_symbol (lo->sobj_w, "__gnu_lto_slim",1,1); errmsg = simple_object_write_to_file (lo->sobj_w, lo->fd, &err); if (errmsg != NULL) { |