aboutsummaryrefslogtreecommitdiff
path: root/ld
AgeCommit message (Collapse)AuthorFilesLines
1995-11-01Wed Nov 1 15:42:45 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 ↵Ian Lance Taylor6-11/+36
<manfred@lts.sel.alcatel.de> * Makefile.in (ALL_EMULATIONS): Add edelta68.o. (edelta68.c): New target. * configure.tgt (m68*-motorola-sysv3*): New target. * emulparams/delta68.sh: New file. * scripttempl/delta68.sc: New file. * scripttempl/m88kbcs.sc: Handle .init and .fini. Change section addresses.
1995-11-01 * ldgram.y (mri_script_command): Accept ',' as well as '=' inIan Lance Taylor1-0/+3
ALIGN and ALIGNMOD statements.
1995-11-01 * emultempl/aix.em: Include ldgram.h.Ian Lance Taylor3-2/+59
(gld${EMULATION_NAME}_parse_args): Handle -pD and -pT, as used on AIX 4.1. * Makefile.in ($(EMULATION_OFILES)): Depend upon ldgram.h.
1995-10-31Tue Oct 31 18:22:24 1995 David Mosberger-Tang <davidm@azstarnet.com>Ian Lance Taylor3-2/+12
* configure.host (alpha-*-linux*): New host. * configure.tgt (alpha-*-linux*): New target.
1995-10-31really make import_file staticIan Lance Taylor1-1/+1
1995-10-31 * emultempl/aix.em (export_files): Remove.Ian Lance Taylor2-30/+78
(import_files): Make static. (struct export_symbol_list): Define. (export_symbols): New static variable. (gld${EMULATION_NAME}_parse_args): Handle an initial -b option correctly. Call read_file for an export file. (gld${EMULATION_NAME}_before_allocation): Call bfd_xcoff_export_symbol for each export symbol, rather than calling read_file for each export file. (gld${EMULATION_NAME}_read_file): For an export file, make the exported symbols undefined, and store them on the export_symbols list.
1995-10-31keep files added by Niklas HallqvistKen Raeburn1-0/+1
1995-10-28Sat Oct 28 00:10:03 1995 steve chamberlain <sac@slash.cygnus.com>Steve Chamberlain2-11/+34
* emultempl/pe.em (gld_${EMULATION_NAME}_parse_args): Don't hang if last option is unrecognised. (gld_${EMULATION_NAME}_set_symbols): Insert created symbols into ABS output section.
1995-10-28 * ld-scripts/script.t: Put .pr in .text, and .rw in .data, forIan Lance Taylor1-0/+5
convenience when testing XCOFF.
1995-10-28 * Makefile.in (ALL_EMULATIONS): Added support for the NetBSDNiklas Hallqvist13-12/+59
m68k4k arch. (em68k4knbsd.c): New rule. * configure.tgt: Added support for the NetBSD m68k4k arch. * genscripts.sh, ldint.texinfo, emulparams/{a29k,armaoutb,armaoutl,coff_sparc,ebmon29k,gld960, gld960coff,go32,h8300,h8300h,h8500,h8500b,h8500c,h8500m,h8500s, hp300bsd,hp3hpux,hppaelf.sh,i386aout,i386bsd,i386coff,i386go32, i386linux,i386lynx,i386nbsd,lnk960,m68kaout,m68kcoff,m68klynx, m88kbcs,mipsbig,mipsbsd,mipsidt,mipsidtl,mipslit,news,ns32knbsd, pc532machaout,rce,riscix,sa29200,sh,shl,sparclynx,sparcnbsd, st2000,sun3,sun4,vanilla,vax,vsta,w65,z8001,z8002}.sh: Changed PAGE_SIZE to TARGET_PAGE_SIZE. * emulparams/m68knbsd.h: Ditto. (TEXT_START_ADDR, NONPAGED_TEXT_START_ADDR): We have 8K pagesize. (EXECUTABLE_SYMBOLS): Hardcode __DYNAMIC to zero for the time being. * emulparams/m68k4knbsd.sh: New file. * scripttempl/aout.sc: Expand EXECUTABLE_SYMBOLS if relocating.
1995-10-27 * emultempl/aix.em: Include ldctor.h.Ian Lance Taylor2-1/+153
(gld${EMULATION_NAME}_after_open): New static function. (gld${EMULATION_NAME}_before_allocation): Call find_relocs. (gld${EMULATION_NAME}_find_relocs): New static function. (gld${EMULATION_NAME}_find_exp_assignment): New static function. (ld_${EMULATION_NAME}_emulation): Use new after_open function. * scripttempl/aix.sc: Use CONSTRUCTORS in .data. * ldctor.c (struct set_info): Move definition into ldctor.h. (struct set_element): Likewise. (sets): Make non-static. (ldctor_add_set_entry): Add name parameter. Save it in the new set element. (ldctor_build_sets): Avoid being called twice. Pass set element name to lang_add_reloc. * ldctor.h (struct set_info): Move definition here from ldctor.c. (struct set_element): Likewise. Add new field name. (sets): Declare. (ldctor_add_set_entry): Declare new name parameter. * ldwrite.c (build_link_order): Don't insist that either name or section be NULL in a lang_reloc_statement. * ldmain.c (add_to_set): Pass NULL to ldctor_add_new_set_entry for new name parameter. (constructor_callback): Pass name to ldctor_add_new_set_entry for new name parameter.
1995-10-27Reflect updates to Mac supportStan Shebs1-1/+3
1995-10-27 * mpw-config.in: Add PowerMac target support, generate config.h.Stan Shebs6-754/+953
* mac-ld.r: New file, Mac resources. * mpw-make.sed: New file, edits Makefile.in into MPW syntax. * mpw-make.in: Remove. * mpw-eppcmacos.c: Prebuilt version of PowerMac linking script.
1995-10-27 * ld-bootstrap/bootstrap.exp: On AIX, pass -bI/lib/syscalls.expIan Lance Taylor1-0/+3
along with --static.
1995-10-27 * ld-scripts/script.s: Make symbols global.Ian Lance Taylor1-0/+13
1995-10-27 * emultempl/aix.em (gld${EMULATION_NAME}_parse_args): TreatIan Lance Taylor2-0/+4
-static as a synonym for -bnso.
1995-10-26 * scripttempl/aix.sc: Move special symbols inside sections.Ian Lance Taylor2-7/+12
Always start .data at 0.
1995-10-25updated for jsmith's file renamingKen Raeburn1-2/+2
1995-10-25 * Makefile.in (diststuff): Also make info.Per Bothner2-9/+14
(maintainer-clean realclean): Also delete *.info*.
1995-10-25add OUTPUT_FORMAT and LIB_SEARCH_DIRSIan Lance Taylor1-0/+2
1995-10-25tweak option handlingIan Lance Taylor1-0/+4
1995-10-25 * emultempl/aix.em: Add support for various AIX linker options,Ian Lance Taylor2-0/+715
for AIX import and export files, and for AIX shared objects. * scripttempl/aix.sc: Add .pad. Put .ds just before the TOC.
1995-10-25 * ldmain.c (main): Initialize new field link_info.static_link.Ian Lance Taylor4-61/+224
* ldmain.c (add_keepsyms_file): Add \n at end of einfo calls. (constructor_callback): Likewise. * ldmisc.c (vfinfo): Likewise. * ldwrite.c (build_link_order): Likewise.
1995-10-25 * ld.texinfo: The MRI ALIGN directive is supported.Ian Lance Taylor2-9/+78
1995-10-23Renamed the VR4300 specific emulparams files to 8.3 unique names,Jackie Smith Cashion2-0/+0
since the old names could cause problems when hosting the source tree on non-Un*x systems.
1995-10-19 * ldlex.l: Treat PROVIDE as a keyword in expression state.Ian Lance Taylor1-0/+4
1995-10-19 * scripttempl/pe.sc (.bss): Move to be after .textSteve Chamberlain1-0/+4
1995-10-17 * emultempl/sunos.em (gld${EMULATION_NAME}_find_exp_assignment):Ian Lance Taylor1-0/+4
Search trinary.cond rather than searching trinary.lhs twice. From linli@ihp.PHys.ethz.CH.
1995-10-17 * emultempl/sunos.em (gld${EMULATION_NAME}_find_so): MoveIan Lance Taylor3-126/+517
directory searching code into gld${EMULATION_NAME}_search_dir. (gld${EMULATION_NAME}_search_dir): New static function, extracted from gld${EMULATION_NAME}_find_so. (global_needed, global_found): New static variables. (gld${EMULATION_NAME}_after_open): New static function. (gld${EMULATION_NAME}_search_needed): New static function. (gld${EMULATION_NAME}_try_needed): New static function. (gld${EMULATION_NAME}_check_needed): New static function. (ld_${EMULATION_NAME}_emulation): Use new after_open function. * ld.texinfo, ld.1: Mention -rpath-link on SunOS.
1995-10-17 * Makefile.in (eelf32ppc.c): Depend upon elf32.em, not generic.em.Ian Lance Taylor2-0/+16
(eelf32lppc.c): Likewise. * emulparams/elf32lppc.sh (TEMPLATE_NAME): Define as elf32. (GENERATE_SHLIB_SCRIPT): Define as yes.
1995-10-16 * configure.tgt (powerpc-*-aix*): New target; use aixppc.Ian Lance Taylor7-4/+43
(rs6000-*-aix*): New target; use aixrs6. * emulparams/aixppc.sh, emulparams/aixrs6.sh: New files. * emultempl/aix.em: New file. * scripttempl/aix.sc: New file. * Makefile.in (ALL_EMULATIONS): Add eaixppc.o and eaixrs6.o. (eaixppc.c, eaixrs6.c): New targets.
1995-10-10 * ldlang.c (lang_finish): Don't try to use an entry_symbol from aIan Lance Taylor1-0/+5
section which was not linked into the final output. PR 8172.
1995-10-10 * emultempl/pe.em (gld_${EMULATION_NAME}_parse_args): FixSteve Chamberlain1-0/+5
fatal typos.
1995-10-10 * ld.h (args_type): Add rpath_link field.Ian Lance Taylor2-0/+65
* emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Search for required dependencies in rpath_link path. Only search LD_LIBRARY_PATH when configured native. * lexsup.c (parse_args): Recognize -rpath-link. * ld.1, ld.texinfo: Document -rpath-link.
1995-10-07 * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Don'tIan Lance Taylor2-0/+9
bother searching for needed libraries unless doing a final link.
1995-10-06Mon Sep 25 22:49:32 1995 Andreas Schwab ↵Ken Raeburn2-46/+26
<schwab@issan.informatik.uni-dortmund.de> * ld/ld.1: Fix formatting bugs.
1995-10-04 * ldexp.c (exp_get_abs_int): Return bfd_vma, not int.Ian Lance Taylor2-15/+29
* ldexp.h (exp_get_abs_int): Update declaration. * ldlang.c (print_output_section_statement): Use fprintf_vma to print return value of exp_get_abs_int. PR 8142.
1995-10-02 * emultempl/elf32.em (global_stat): New file static variable.Ian Lance Taylor2-4/+59
(gld${EMULATION_NAME}_try_needed): Call stat_needed to make sure that the file has not already been included under another name. (gld${EMULATION_NAME}_stat_needed): New static function.
1995-09-29 * emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): IfIan Lance Taylor2-9/+39
command_line.rpath is set, use it, rather than the -L options, to build the rules section. * ld.texinfo: Document this use of -rpath.
1995-09-29 * lexsup.c (parse_args): Don't set link_info.shared for -assertIan Lance Taylor1-0/+28
pure-text. Pass true, not 1, to lang_add_entry. * emultempl/sunos.em (find_assign): New static variable. (found_assign): New static variable. (gld${EMULATION_NAME}_before_allocation): Rename local h to hdyn. If not a relocateable link, and no start symbol was specified on the command line, and there are any undefined symbols, set link_info.shared. If link_info.shared is set, set the address of the .text section to 0x20. (gld${EMULATION_NAME}_find_assignment): Rename from gld${EMULATION_NAME}_find_statement_assignment. If find_assign is set, then just set found_assign based on whether an assignment is found to find_assign. (gld${EMULATION_NAME}_get_script): Don't use a special script when producing a shared library. * emulparams/sun4.sh (GENERATE_SHLIB_SCRIPT): Remove. * scripttempl/aout.sc: Remove CREATE_SHLIB tests. * ldlang.c (entry_from_cmdline): New global variable. (lang_add_entry): Change cmdline parameter from int to boolean. Use global entry_from_cmdline rather than function static from_cmdline. * ldlang.h (entry_from_cmdline): Declare. (lang_add_entry): Change declaration of second parameter from int to boolean. * ldgram.y: Pass false, not 0, to lang_add_entry.
1995-09-28 * ld.h (parsing_defsym): Declare.Ian Lance Taylor2-0/+18
* ldlex.h (lex_string): Declare. * ldlex.l (lex_string): Define. * lexsup.c (parsing_defsym): Define. (parse_args): In OPTION_DEFSYM case, set lex_string before calling lex_redirect, and clear it after calling yyparse. Set parsing_defsym around call to yyparse. * ldmain.c (main): Set lex_string before calling lex_redirect, and clear it after calling yyparse. * ldmisc.c (vfinfo): For %S, handle --defsym arguments and built in linker scripts correctly. PR 8092.
1995-09-28 * scripttempl/sparccoff.sc: Add .ctors/.dtors handling like otherIan Lance Taylor1-0/+4
COFF targets, allowing for the leading underscore used on SPARC COFF. PR 8006.
1995-09-28mention creating SunOS shared librariesIan Lance Taylor1-2/+12
1995-09-28 * ld-shared/shared.exp: Run the tests on sparc*-*-sunos4*. AddIan Lance Taylor3-0/+29
appropriate modifications and setup_xfails. * ld-shared/sun4.dat: New file.
1995-09-28 * lexsup.c (parse_args): Handle -assert.Ian Lance Taylor5-178/+74
* emulparams/sun4.sh (GENERATE_SHLIB_SCRIPT): Define. * emultempl/sunos.em (gld${EMULATION_NAME}_get_script): Use the shared library script when appropriate. * scripttempl/aout.sc: If CREATE_SHLIB is set, start the .text section at SIZEOF_HEADERS.
1995-09-28 * Makefile.in (earmcoff.c): Build.David Edelsohn5-0/+52
* configure.tgt (arm-*-coff): New target * emulparms/armcoff.sh: New file. * scripttempl/armcoff.sc: New file.
1995-09-26 * scripttempl/i386coff.sc: Remove .data2; no longer needed.Ian Lance Taylor1-0/+4
1995-09-22 * ldfile.c (ldfile_set_output_arch): Make arch const.Ian Lance Taylor1-0/+4
1995-09-21Locate __bss_start at the real start of bss.Michael Meissner2-3/+20
1995-09-18 Based on patches by Alan Modra <alan@spri.levels.unisa.edu.au>:Ian Lance Taylor2-8/+16
* Makefile.in (CC_FOR_TARGET): Remove brokensed stuff. (CXX_FOR_TARGET): Likewise. (install): Likewise. (GENERATED_HFILES): Remove config.h. (.dep): Depend upon config.h.