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:
parent
db65e864b3
commit
31ce062864
4 changed files with 12 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* 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_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
||||
|
||||
GENERATE_SHLIB_SCRIPT=yes
|
||||
|
||||
ARCH=arm
|
||||
MACHINE=
|
||||
|
|
|
@ -6,6 +6,8 @@ LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|||
MAXPAGESIZE=0x8000
|
||||
TEMPLATE_NAME=armelf
|
||||
|
||||
GENERATE_SHLIB_SCRIPT=yes
|
||||
|
||||
OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
||||
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
||||
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
||||
|
|
|
@ -70,6 +70,8 @@ gld${EMULATION_NAME}_before_parse ()
|
|||
#ifndef TARGET_ /* I.e., if not generic. */
|
||||
ldfile_set_output_arch ("`echo ${ARCH}`");
|
||||
#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
|
||||
|
|
Loading…
Reference in a new issue