diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 1999-07-12 08:31:34 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 1999-07-12 08:31:34 +0000 |
commit | 49bdcdba9f24a9710c7eb2839f09e0c94f08c7be (patch) | |
tree | d91e8d3b7e85a1e4ed064806b5b7835be3ec16de | |
parent | 121089cbf08a912591115bbeeb181eb09ccee448 (diff) | |
download | gdb-49bdcdba9f24a9710c7eb2839f09e0c94f08c7be.zip gdb-49bdcdba9f24a9710c7eb2839f09e0c94f08c7be.tar.gz gdb-49bdcdba9f24a9710c7eb2839f09e0c94f08c7be.tar.bz2 |
* emultempl/linux.em (ld_${EMULATION_NAME}_emulation): Fill in
structure initializations.
-rw-r--r-- | ld/ChangeLog | 3 | ||||
-rw-r--r-- | ld/emultempl/linux.em | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 1e3396c..cccb1a1 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,8 @@ 1999-07-12 Andreas Schwab <schwab@suse.de> + * emultempl/linux.em (ld_${EMULATION_NAME}_emulation): Fill in + structure initializations. + * emultempl/elf32.em (ld_${EMULATION_NAME}_emulation): Add missing comma in initializer. diff --git a/ld/emultempl/linux.em b/ld/emultempl/linux.em index dc0855d..29f5bd1 100644 --- a/ld/emultempl/linux.em +++ b/ld/emultempl/linux.em @@ -203,6 +203,12 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = "${OUTPUT_FORMAT}", NULL, gld${EMULATION_NAME}_create_output_section_statements, - gld${EMULATION_NAME}_open_dynamic_archive + gld${EMULATION_NAME}_open_dynamic_archive, + NULL, + NULL, + NULL, + NULL, + NULL, + NULL }; EOF |