mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* emultempl/elf32.em (gld${EMULATION_NAME}_stat_needed):
If st.st_ino is zero, do not treat the library as a duplicate.
This commit is contained in:
parent
0e68218d25
commit
9eabd47532
13
ld/ChangeLog
13
ld/ChangeLog
@ -1,3 +1,8 @@
|
|||||||
|
2005-02-11 Zack Weinberg <zack@codesourcery.com>
|
||||||
|
|
||||||
|
* emultempl/elf32.em (gld${EMULATION_NAME}_stat_needed):
|
||||||
|
If st.st_ino is zero, do not treat the library as a duplicate.
|
||||||
|
|
||||||
2005-02-10 Jakub Jelinek <jakub@redhat.com>
|
2005-02-10 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* emultempl/hppaelf.em (hppaelf_create_output_section_statements):
|
* emultempl/hppaelf.em (hppaelf_create_output_section_statements):
|
||||||
@ -8,7 +13,7 @@
|
|||||||
2005-02-08 Mark Mitchell <mark@codesourcery.com>
|
2005-02-08 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* scripttempl/armbpabi.sc (VERSION): Make special section symbols
|
* scripttempl/armbpabi.sc (VERSION): Make special section symbols
|
||||||
local.
|
local.
|
||||||
(Image$$ER_RO$$Base): Define whenever RELOCATING.
|
(Image$$ER_RO$$Base): Define whenever RELOCATING.
|
||||||
(Image$$ER_RO$$Limit): Likewise.
|
(Image$$ER_RO$$Limit): Likewise.
|
||||||
(SHT$$INIT_ARRAY$$Base): Likewise.
|
(SHT$$INIT_ARRAY$$Base): Likewise.
|
||||||
@ -69,7 +74,7 @@
|
|||||||
(PARSE_AND_LIST_PROLOGUE): Add option token OPTION_FIX_V4BX.
|
(PARSE_AND_LIST_PROLOGUE): Add option token OPTION_FIX_V4BX.
|
||||||
(PARSE_AND_LIST_LONGOPTS): Add option --fix-v4bx.
|
(PARSE_AND_LIST_LONGOPTS): Add option --fix-v4bx.
|
||||||
(PARSE_AND_LIST_OPTIONS): Add option --fix-v4bx.
|
(PARSE_AND_LIST_OPTIONS): Add option --fix-v4bx.
|
||||||
(PARSE_AND_LIST_ARGS_CASES): Add option OPTION_FIX_V4BX.
|
(PARSE_AND_LIST_ARGS_CASES): Add option OPTION_FIX_V4BX.
|
||||||
* NEWS: Mention --fix-v4bx.
|
* NEWS: Mention --fix-v4bx.
|
||||||
* ld.texinfo: Document --fix-v4bx.
|
* ld.texinfo: Document --fix-v4bx.
|
||||||
|
|
||||||
@ -80,8 +85,8 @@
|
|||||||
* ld/scripttempl/armbpabi.sc: Move .plt to end of text segment.
|
* ld/scripttempl/armbpabi.sc: Move .plt to end of text segment.
|
||||||
Define IMAGE$$ER_RO$${Base,Limit} and SHT$$INIT_ARRAY$${Base,Limit}.
|
Define IMAGE$$ER_RO$${Base,Limit} and SHT$$INIT_ARRAY$${Base,Limit}.
|
||||||
Put .init_array, .fini_array, etc. into the read-only data
|
Put .init_array, .fini_array, etc. into the read-only data
|
||||||
segment.
|
segment.
|
||||||
|
|
||||||
2005-01-25 Alan Modra <amodra@bigpond.net.au>
|
2005-01-25 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Formatting.
|
* emultempl/elf32.em (gld${EMULATION_NAME}_try_needed): Formatting.
|
||||||
|
@ -231,8 +231,16 @@ gld${EMULATION_NAME}_stat_needed (lang_input_statement_type *s)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Some operating systems, e.g. Windows, do not provide a meaningful
|
||||||
|
st_ino; they always set it to zero. (Windows does provide a
|
||||||
|
meaningful st_dev.) Do not indicate a duplicate library in that
|
||||||
|
case. While there is no guarantee that a system that provides
|
||||||
|
meaningful inode numbers will never set st_ino to zero, this is
|
||||||
|
merely an optimization, so we do not need to worry about false
|
||||||
|
negatives. */
|
||||||
if (st.st_dev == global_stat.st_dev
|
if (st.st_dev == global_stat.st_dev
|
||||||
&& st.st_ino == global_stat.st_ino)
|
&& st.st_ino == global_stat.st_ino
|
||||||
|
&& st.st_ino != 0)
|
||||||
{
|
{
|
||||||
global_found = TRUE;
|
global_found = TRUE;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user