mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
818a192aae
* Makefile.in: punt "fundamental" mode because it breaks my emacs macros. install using INSTALL_PROGRAM and INSTALL_DATA. remove spaces following hyphens, bsd make can't cope. added standards.text support and made it look like all the other makefiles. * configure.in: configure now runs entirely in objdir so make file existence checks against ${srcdir}. Mark this directory as target dependent. Thu Dec 5 22:46:16 1991 K. Richard Pixley (rich at rtl.cygnus.com) * Makefile.in: idestdir and ddestdir go away. Added copyrights and shift gpl to v2. Added ChangeLog if it didn't exist. docdir and mandir now keyed off datadir by default. |
||
---|---|---|
.. | ||
config | ||
.Sanitize | ||
ChangeLog | ||
config.h | ||
config.sub | ||
configure | ||
configure.in | ||
ebmon29k.sc | ||
gld.1 | ||
h8300hds.c | ||
h8300hds.sc | ||
i386aout.c | ||
i386aout.sc | ||
ld-emul.c | ||
ld-gld68k-r.script | ||
ld-gld68k-Ur.script | ||
ld-gld68k.c | ||
ld-gld68k.script | ||
ld-gld960.c | ||
ld-gld960.script | ||
ld-gld-r.script | ||
ld-gld-Ur.script | ||
ld-gld.c | ||
ld-gld.script | ||
ld-gldm88kbcs-r.script | ||
ld-gldm88kbcs-Ur.script | ||
ld-gldm88kbcs.c | ||
ld-gldm88kbcs.script | ||
ld-lnk960-r.script | ||
ld-lnk960.c | ||
ld-lnk960.script | ||
ld-vanilla.c | ||
ld.h | ||
ld.tex | ||
ld.texinfo | ||
ldemul.c | ||
ldexp.c | ||
ldexp.h | ||
ldfile.c | ||
ldfile.h | ||
ldgld68k.c | ||
ldgld68k.sc | ||
ldgld68k.script | ||
ldgld68kr.sc | ||
ldgld68kr.script | ||
ldgld68kUr.sc | ||
ldgld68kUr.script | ||
ldgld960.c | ||
ldgld960.sc | ||
ldgld960.script | ||
ldgld.c | ||
ldgld.sc | ||
ldgld.script | ||
ldglda29k.c | ||
ldglda29k.sc | ||
ldglda29k.script | ||
ldglda29kr.sc | ||
ldglda29kr.script | ||
ldglda29kUr.sc | ||
ldglda29kUr.script | ||
ldgldi386v.c | ||
ldgldi386v.sc | ||
ldgldi386vr.sc | ||
ldgldi386vUr.sc | ||
ldgldm68kv.c | ||
ldgldm68kv.sc | ||
ldgldm68kvr.sc | ||
ldgldm68kvUr.sc | ||
ldgldm88kbcs.c | ||
ldgldm88kbcs.sc | ||
ldgldm88kbcs.script | ||
ldgldm88kbcsr.sc | ||
ldgldm88kbcsr.script | ||
ldgldm88kbcsUr.sc | ||
ldgldm88kbcsUr.script | ||
ldgldr.sc | ||
ldgldr.script | ||
ldgldUr.sc | ||
ldgldUr.script | ||
ldgram.y | ||
ldindr.c | ||
ldindr.h | ||
ldlang.c | ||
ldlang.h | ||
ldlex.h | ||
ldlex.l | ||
ldlnk960.c | ||
ldlnk960.sc | ||
ldlnk960.script | ||
ldlnk960r.sc | ||
ldlnk960r.script | ||
ldm88k.c | ||
ldm88k.sc | ||
ldm88kr.sc | ||
ldm88kUr.sc | ||
ldmain.c | ||
ldmain.h | ||
ldmisc.c | ||
ldmisc.h | ||
ldsym.c | ||
ldsym.h | ||
ldtemplate | ||
ldvanilla.c | ||
ldver.c | ||
ldver.h | ||
ldwarn.c | ||
ldwarn.h | ||
ldwrite.c | ||
ldwrite.h | ||
Makefile | ||
Makefile.in | ||
mkscript.c | ||
news.sc | ||
README |
This is a BETA release of a completely rewritten GNU linker. It is distributed with other "binary utilities" which should be in ../binutils. See ../binutils/README for more general notes, including where to send bug reports. There are many new features of the linker: * The linker uses a Binary File Descriptor library (../bfd) that it uses to read and write object files. This helps insulate the linker itself from the format of object files. * The linker support a number of different object file formats. It can even handle multiple formats at once: Read two input formats and write a third. * The linker can be configured for cross-linking. * The linker contains a control language. * There is a manual. Installation ============ See ../binutils/README. If you want to make a cross-linker, you may want to specify a different search path of -lfoo libraries than the default. You can do this by setting the LIB_PATH variable in ./Makefile. Porting to a new target ======================= A new target configuration may need a new linker script (.sc file) to specify linker actions (such as the layout of the output). See if one of the existing ones are suitable. Note that the Makefile generates variants of the standard script that are used when ld is passed -r -Ur -N or -n options. These variant default scripts are generated from the "master" script using sed scripts that may not work in all cases. Look at the rules and comments in ld/Makefile.in to make sure you stay with the rules. Otherwise, you may need to add a new "emulation" (a sample of a recently added target and emulation is for the SOny 68k News family - look for files named *news*). Also see the notes in ../binutils/README. Reporting bugs etc =========================== See ../binutils/README.