diff options
-rw-r--r-- | ld/ChangeLog | 15 | ||||
-rwxr-xr-x | ld/emulparams/fr30.sh | 2 |
2 files changed, 15 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index fa41a1d..f6ad560 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,17 @@ +1998-12-04 Nick Clifton <nickc@cygnus.com> + + * emulparams/fr30.sh (TEXT_START_ADDR): Change TEXT_START_ADDR + from 0x100000 to 0x10000 so that it fits in 20 bits. + +Sat Nov 28 22:32:20 1998 Ian Lance Taylor <ian@cygnus.com> + + * ldemul.h (ldemul_recognized_file): Declare. + +Sat Nov 28 22:30:55 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> + + * ldlang.c (lang_add_wild): Don't pretend that there is an input + file if the filename is a wildcard pattern. + 1998-11-25 DJ Delorie <dj@cygnus.com> * ldemul.h (ld_emulation_xfer_struct): new hook "recognized_file" @@ -16,7 +30,6 @@ start-sanitize-vr4xxx * configure.tgt: Handle mips64*vr4xxx. - end-sanitize-vr4xxx 1998-11-23 DJ Delorie <dj@cygnus.com> diff --git a/ld/emulparams/fr30.sh b/ld/emulparams/fr30.sh index 770cab0..8bf084c 100755 --- a/ld/emulparams/fr30.sh +++ b/ld/emulparams/fr30.sh @@ -1,7 +1,7 @@ MACHINE= SCRIPT_NAME=fr30 OUTPUT_FORMAT="elf32-fr30" -TEXT_START_ADDR=0x100000 +TEXT_START_ADDR=0x10000 ZDATA_START_ADDR=0x160 ROZDATA_START_ADDR="ALIGN (4)" SDATA_START_ADDR="ALIGN (4)" |