mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
1999-05-24 Philip Blundell <philb@gnu.org>
* emultempl/armelf.em (before_parse): Set config.dynamic_link and config.has_shared. * emulparams/armelf.sh (GENERATE_SHLIB_SCRIPT): Define. * emulparams/armelf_linux.sh (GENERATE_SHLIB_SCRIPT): Likewise
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
1999-05-24 Philip Blundell <philb@gnu.org>
|
||||||
|
|
||||||
|
* emultempl/armelf.em (before_parse): Set config.dynamic_link and
|
||||||
|
config.has_shared.
|
||||||
|
* emulparams/armelf.sh (GENERATE_SHLIB_SCRIPT): Define.
|
||||||
|
* emulparams/armelf_linux.sh (GENERATE_SHLIB_SCRIPT): Likewise.
|
||||||
|
|
||||||
1999-04-13 Philip Blundell <philb@gnu.org>
|
1999-04-13 Philip Blundell <philb@gnu.org>
|
||||||
|
|
||||||
* emultempl/armelf.em: Add definitions related to shared objects
|
* emultempl/armelf.em: Add definitions related to shared objects
|
||||||
|
@ -9,6 +9,7 @@ OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
|||||||
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
||||||
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
||||||
|
|
||||||
|
GENERATE_SHLIB_SCRIPT=yes
|
||||||
|
|
||||||
ARCH=arm
|
ARCH=arm
|
||||||
MACHINE=
|
MACHINE=
|
||||||
|
@ -6,6 +6,8 @@ LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|||||||
MAXPAGESIZE=0x8000
|
MAXPAGESIZE=0x8000
|
||||||
TEMPLATE_NAME=armelf
|
TEMPLATE_NAME=armelf
|
||||||
|
|
||||||
|
GENERATE_SHLIB_SCRIPT=yes
|
||||||
|
|
||||||
OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
||||||
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
||||||
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
||||||
|
@ -70,6 +70,8 @@ gld${EMULATION_NAME}_before_parse ()
|
|||||||
#ifndef TARGET_ /* I.e., if not generic. */
|
#ifndef TARGET_ /* I.e., if not generic. */
|
||||||
ldfile_set_output_arch ("`echo ${ARCH}`");
|
ldfile_set_output_arch ("`echo ${ARCH}`");
|
||||||
#endif /* not TARGET_ */
|
#endif /* not TARGET_ */
|
||||||
|
config.dynamic_link = ${DYNAMIC_LINK-true};
|
||||||
|
config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo true ; else echo false ; fi`;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Try to open a dynamic archive. This is where we know that ELF
|
/* Try to open a dynamic archive. This is where we know that ELF
|
||||||
|
Reference in New Issue
Block a user