From 6ce0926cda843b175329622f91a1996bbbf85ebe Mon Sep 17 00:00:00 2001 From: Marc Espie Date: Sat, 9 Jun 2001 22:47:47 +0000 Subject: bye bye --- gnu/usr.bin/binutils/etc/configbuild.jin | Bin 11123 -> 0 bytes gnu/usr.bin/binutils/etc/configdev.jin | Bin 17967 -> 0 bytes gnu/usr.bin/binutils/etc/configure.info-3 | 285 -------- gnu/usr.bin/binutils/gas/doc/as.info-8 | 1042 --------------------------- gnu/usr.bin/binutils/gprof/gprof.info-1 | 1121 ----------------------------- gnu/usr.bin/binutils/gprof/gprof.info-2 | 760 ------------------- 6 files changed, 3208 deletions(-) delete mode 100644 gnu/usr.bin/binutils/etc/configbuild.jin delete mode 100644 gnu/usr.bin/binutils/etc/configdev.jin delete mode 100644 gnu/usr.bin/binutils/etc/configure.info-3 delete mode 100644 gnu/usr.bin/binutils/gas/doc/as.info-8 delete mode 100644 gnu/usr.bin/binutils/gprof/gprof.info-1 delete mode 100644 gnu/usr.bin/binutils/gprof/gprof.info-2 (limited to 'gnu/usr.bin/binutils') diff --git a/gnu/usr.bin/binutils/etc/configbuild.jin b/gnu/usr.bin/binutils/etc/configbuild.jin deleted file mode 100644 index 44cd9397aa1..00000000000 Binary files a/gnu/usr.bin/binutils/etc/configbuild.jin and /dev/null differ diff --git a/gnu/usr.bin/binutils/etc/configdev.jin b/gnu/usr.bin/binutils/etc/configdev.jin deleted file mode 100644 index 9b11a71acd7..00000000000 Binary files a/gnu/usr.bin/binutils/etc/configdev.jin and /dev/null differ diff --git a/gnu/usr.bin/binutils/etc/configure.info-3 b/gnu/usr.bin/binutils/etc/configure.info-3 deleted file mode 100644 index bf1dcc076b1..00000000000 --- a/gnu/usr.bin/binutils/etc/configure.info-3 +++ /dev/null @@ -1,285 +0,0 @@ -This is configure.info, produced by makeinfo version 4.0 from -./configure.texi. - -INFO-DIR-SECTION GNU admin -START-INFO-DIR-ENTRY -* configure: (configure). The GNU configure and build system -END-INFO-DIR-ENTRY - - This file documents the GNU configure and build system. - - Copyright (C) 1998 Cygnus Solutions. - - Permission is granted to make and distribute verbatim copies of this -manual provided the copyright notice and this permission notice are -preserved on all copies. - - Permission is granted to copy and distribute modified versions of -this manual under the conditions for verbatim copying, provided that -the entire resulting derived work is distributed under the terms of a -permission notice identical to this one. - - Permission is granted to copy and distribute translations of this -manual into another language, under the above conditions for modified -versions, except that this permission notice may be stated in a -translation approved by the Foundation. - - -File: configure.info, Node: Multilibs in Target Libraries, Prev: Multilibs in gcc, Up: Multilibs - -Multilibs in Target Libraries -============================= - - The target libraries in the Cygnus tree are automatically built with -multilibs. That means that each library is built multiple times. - - This default is set in the top level `configure.in' file, by adding -`--enable-multilib' to the list of arguments passed to configure when -it is run for the target libraries (*note Host and Target Libraries::). - - Each target library uses the shell script `config-ml.in', written by -Doug Evans, to prepare to build target libraries. This shell script is -invoked after the `Makefile' has been created by the `configure' -script. If multilibs are not enabled, it does nothing, otherwise it -modifies the `Makefile' to support multilibs. - - The `config-ml.in' script makes one copy of the `Makefile' for each -multilib in the appropriate subdirectory. When configuring in the -source directory (which is not recommended), it will build a symlink -tree of the sources in each subdirectory. - - The `config-ml.in' script sets several variables in the various -`Makefile's. The `Makefile.in' must have definitions for these -variables already; `config-ml.in' simply changes the existing values. -The `Makefile' should use default values for these variables which will -do the right thing in the subdirectories. - -`MULTISRCTOP' - `config-ml.in' will set this to a sequence of `../' strings, where - the number of strings is the number of multilib levels in the - source tree. The default value should be the empty string. - -`MULTIBUILDTOP' - `config-ml.in' will set this to a sequence of `../' strings, where - the number of strings is number of multilib levels in the object - directory. The default value should be the empty string. This - will differ from `MULTISRCTOP' when configuring in the source tree - (which is not recommended). - -`MULTIDIRS' - In the top level `Makefile' only, `config-ml.in' will set this to - the list of multilib subdirectories. The default value should be - the empty string. - -`MULTISUBDIR' - `config-ml.in' will set this to the installed subdirectory name to - use for this subdirectory, with a leading `/'. The default value - shold be the empty string. - -`MULTIDO' -`MULTICLEAN' - In the top level `Makefile' only, `config-ml.in' will set these - variables to commands to use when doing a recursive make. These - variables should both default to the string `true', so that by - default nothing happens. - - All references to the parent of the source directory should use the -variable `MULTISRCTOP'. Instead of writing `$(srcdir)/..', you must -write `$(srcdir)/$(MULTISRCTOP)..'. - - Similarly, references to the parent of the object directory should -use the variable `MULTIBUILDTOP'. - - In the installation target, the libraries should be installed in the -subdirectory `MULTISUBDIR'. Instead of installing -`$(libdir)/libfoo.a', install `$(libdir)$(MULTISUBDIR)/libfoo.a'. - - The `config-ml.in' script also modifies the top level `Makefile' to -add `multi-do' and `multi-clean' targets which are used when building -multilibs. - - The default target of the `Makefile' should include the following -command: - @$(MULTIDO) $(FLAGS_TO_PASS) DO=all multi-do - -This assumes that `$(FLAGS_TO_PASS)' is defined as a set of variables -to pass to a recursive invocation of `make'. This will build all the -multilibs. Note that the default value of `MULTIDO' is `true', so by -default this command will do nothing. It will only do something in the -top level `Makefile' if multilibs were enabled. - - The `install' target of the `Makefile' should include the following -command: - @$(MULTIDO) $(FLAGS_TO_PASS) DO=install multi-do - - In general, any operation, other than clean, which should be -performed on all the multilibs should use a `$(MULTIDO)' line, setting -the variable `DO' to the target of each recursive call to `make'. - - The `clean' targets (`clean', `mostlyclean', etc.) should use -`$(MULTICLEAN)'. For example, the `clean' target should do this: - @$(MULTICLEAN) DO=clean multi-clean - - -File: configure.info, Node: FAQ, Next: Index, Prev: Multilibs, Up: Top - -Frequently Asked Questions -************************** - -Which do I run first, `autoconf' or `automake'? - Except when you first add autoconf or automake support to a - package, you shouldn't run either by hand. Instead, configure - with the `--enable-maintainer-mode' option, and let `make' take - care of it. - -`autoconf' says something about undefined macros. - This means that you have macros in your `configure.in' which are - not defined by `autoconf'. You may be using an old version of - `autoconf'; try building and installing a newer one. Make sure the - newly installled `autoconf' is first on your `PATH'. Also, see - the next question. - -My `configure' script has stuff like `CY_GNU_GETTEXT' in it. - This means that you have macros in your `configure.in' which should - be defined in your `aclocal.m4' file, but aren't. This usually - means that `aclocal' was not able to appropriate definitions of the - macros. Make sure that you have installed all the packages you - need. In particular, make sure that you have installed libtool - (this is where `AM_PROG_LIBTOOL' is defined) and gettext (this is - where `CY_GNU_GETTEXT' is defined, at least in the Cygnus version - of gettext). - -My `Makefile' has `@' characters in it. - This may mean that you tried to use an autoconf substitution in - your `Makefile.in' without adding the appropriate `AC_SUBST' call - to your `configure' script. Or it may just mean that you need to - rebuild `Makefile' in your build directory. To rebuild `Makefile' - from `Makefile.in', run the shell script `config.status' with no - arguments. If you need to force `configure' to run again, first - run `config.status --recheck'. These runs are normally done - automatically by `Makefile' targets, but if your `Makefile' has - gotten messed up you'll need to help them along. - -Why do I have to run both `config.status --recheck' and `config.status'? - Normally, you don't; they will be run automatically by `Makefile' - targets. If you do need to run them, use `config.status --recheck' - to run the `configure' script again with the same arguments as the - first time you ran it. Use `config.status' (with no arguments) to - regenerate all files (`Makefile', `config.h', etc.) based on the - results of the configure script. The two cases are separate - because it isn't always necessary to regenerate all the files - after running `config.status --recheck'. The `Makefile' targets - generated by automake will use the environment variables - `CONFIG_FILES' and `CONFIG_HEADERS' to only regenerate files as - they are needed. - -What is the Cygnus tree? - The Cygnus tree is used for various packages including gdb, the GNU - binutils, and egcs. It is also, of course, used for Cygnus - releases. It is the build system which was developed at Cygnus, - using the Cygnus configure script. It permits building many - different packages with a single configure and make. The - configure scripts in the tree are being converted to autoconf, but - the general build structure remains intact. - -Why do I have to keep rebuilding and reinstalling the tools? - I know, it's a pain. Unfortunately, there are bugs in the tools - themselves which need to be fixed, and each time that happens - everybody who uses the tools need to reinstall new versions of - them. I don't know if there is going to be a clever fix until the - tools stabilize. - -Why not just have a Cygnus tree `make' target to update the tools? - The tools unfortunately need to be installed before they can be - used. That means that they must be built using an appropriate - prefix, and it seems unwise to assume that every configuration - uses an appropriate prefix. It might be possible to make them - work in place, or it might be possible to install them in some - subdirectory; so far these approaches have not been implemented. - - -File: configure.info, Node: Index, Prev: FAQ, Up: Top - -Index -***** - -* Menu: - -* --build option: Build and Host Options. -* --host option: Build and Host Options. -* --target option: Specifying the Target. -* _GNU_SOURCE: Write configure.in. -* AC_CANONICAL_HOST: Using the Host Type. -* AC_CANONICAL_SYSTEM: Using the Target Type. -* AC_CONFIG_HEADER: Write configure.in. -* AC_EXEEXT: Write configure.in. -* AC_INIT: Write configure.in. -* AC_OUTPUT: Write configure.in. -* AC_PREREQ: Write configure.in. -* AC_PROG_CC: Write configure.in. -* AC_PROG_CXX: Write configure.in. -* acconfig.h: Written Developer Files. -* acconfig.h, writing: Write acconfig.h. -* acinclude.m4: Written Developer Files. -* aclocal.m4: Generated Developer Files. -* AM_CONFIG_HEADER: Write configure.in. -* AM_DISABLE_SHARED: Write configure.in. -* AM_EXEEXT: Write configure.in. -* AM_INIT_AUTOMAKE: Write configure.in. -* AM_MAINTAINER_MODE: Write configure.in. -* AM_PROG_LIBTOOL: Write configure.in. -* AM_PROG_LIBTOOL in configure: FAQ. -* build option: Build and Host Options. -* building with a cross compiler: Canadian Cross. -* canadian cross: Canadian Cross. -* canadian cross in configure: CCross in Configure. -* canadian cross in cygnus tree: CCross in Cygnus Tree. -* canadian cross in makefile: CCross in Make. -* canadian cross, configuring: Build and Host Options. -* canonical system names: Configuration Names. -* config.cache: Build Files Description. -* config.h: Build Files Description. -* config.h.in: Generated Developer Files. -* config.in: Generated Developer Files. -* config.status: Build Files Description. -* config.status --recheck: FAQ. -* configuration names: Configuration Names. -* configuration triplets: Configuration Names. -* configure: Generated Developer Files. -* configure build system: Build and Host Options. -* configure host: Build and Host Options. -* configure target: Specifying the Target. -* configure.in: Written Developer Files. -* configure.in, writing: Write configure.in. -* configuring a canadian cross: Build and Host Options. -* cross compiler: Cross Compilation Concepts. -* cross compiler, building with: Canadian Cross. -* cross tools: Cross Compilation Tools. -* CY_GNU_GETTEXT in configure: FAQ. -* cygnus configure: Cygnus Configure. -* goals: Goals. -* history: History. -* host names: Configuration Names. -* host option: Build and Host Options. -* host system: Host and Target. -* host triplets: Configuration Names. -* HOST_CC: CCross in Make. -* libg++ configure: Cygnus Configure in C++ Libraries. -* libio configure: Cygnus Configure in C++ Libraries. -* libstdc++ configure: Cygnus Configure in C++ Libraries. -* Makefile: Build Files Description. -* Makefile, garbage characters: FAQ. -* Makefile.am: Written Developer Files. -* Makefile.am, writing: Write Makefile.am. -* Makefile.in: Generated Developer Files. -* multilibs: Multilibs. -* stamp-h: Build Files Description. -* stamp-h.in: Generated Developer Files. -* system names: Configuration Names. -* system types: Configuration Names. -* target option: Specifying the Target. -* target system: Host and Target. -* triplets: Configuration Names. -* undefined macros: FAQ. - - diff --git a/gnu/usr.bin/binutils/gas/doc/as.info-8 b/gnu/usr.bin/binutils/gas/doc/as.info-8 deleted file mode 100644 index 37fdb152b00..00000000000 --- a/gnu/usr.bin/binutils/gas/doc/as.info-8 +++ /dev/null @@ -1,1042 +0,0 @@ -This is as.info, produced by makeinfo version 4.0 from as.texinfo. - -START-INFO-DIR-ENTRY -* As: (as). The GNU assembler. -END-INFO-DIR-ENTRY - - This file documents the GNU Assembler "as". - - Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free -Software Foundation, Inc. - - Permission is granted to make and distribute verbatim copies of this -manual provided the copyright notice and this permission notice are -preserved on all copies. - - Permission is granted to copy and distribute modified versions of -this manual under the conditions for verbatim copying, provided that -the entire resulting derived work is distributed under the terms of a -permission notice identical to this one. - - Permission is granted to copy and distribute translations of this -manual into another language, under the above conditions for modified -versions. - - -File: as.info, Node: Index, Prev: Acknowledgements, Up: Top - -Index -***** - -* Menu: - -* #: Comments. -* #APP: Preprocessing. -* #NO_APP: Preprocessing. -* $ in symbol names <1>: SH-Chars. -* $ in symbol names <2>: H8/500-Chars. -* $ in symbol names <3>: D30V-Chars. -* $ in symbol names: D10V-Chars. -* -+ option, VAX/VMS: VAX-Opts. -* --: Command Line. -* --base-size-default-16: M68K-Opts. -* --base-size-default-32: M68K-Opts. -* --bitwise-or option, M680x0: M68K-Opts. -* --disp-size-default-16: M68K-Opts. -* --disp-size-default-32: M68K-Opts. -* --enforce-aligned-data: Sparc-Aligned-Data. -* --fatal-warnings: W. -* --MD: MD. -* --no-warn: W. -* --register-prefix-optional option, M680x0: M68K-Opts. -* --statistics: statistics. -* --traditional-format: traditional-format. -* --warn: W. -* -1 option, VAX/VMS: VAX-Opts. -* -a: a. -* -A options, i960: Options-i960. -* -ac: a. -* -ad: a. -* -ah: a. -* -al: a. -* -an: a. -* -as: a. -* -Asparclet: Sparc-Opts. -* -Asparclite: Sparc-Opts. -* -Av6: Sparc-Opts. -* -Av8: Sparc-Opts. -* -Av9: Sparc-Opts. -* -Av9a: Sparc-Opts. -* -b option, i960: Options-i960. -* -D: D. -* -D, ignored on VAX: VAX-Opts. -* -d, VAX option: VAX-Opts. -* -EB command line option, ARM: ARM Options. -* -EB option (MIPS): MIPS Opts. -* -EL command line option, ARM: ARM Options. -* -EL option (MIPS): MIPS Opts. -* -f: f. -* -G option (MIPS): MIPS Opts. -* -H option, VAX/VMS: VAX-Opts. -* -h option, VAX/VMS: VAX-Opts. -* -I PATH: I. -* -J, ignored on VAX: VAX-Opts. -* -K: K. -* -k command line option, ARM: ARM Options. -* -L: L. -* -l option, M680x0: M68K-Opts. -* -M: M. -* -m68000 and related options: M68K-Opts. -* -mall command line option, ARM: ARM Options. -* -mapcs command line option, ARM: ARM Options. -* -mapcs-float command line option, ARM: ARM Options. -* -mapcs-reentrant command line option, ARM: ARM Options. -* -marm command line option, ARM: ARM Options. -* -marmv command line option, ARM: ARM Options. -* -mbig-endian option (ARC): ARC-Opts. -* -mfpa command line option, ARM: ARM Options. -* -mfpe-old command line option, ARM: ARM Options. -* -mlittle-endian option (ARC): ARC-Opts. -* -mno-fpu command line option, ARM: ARM Options. -* -moabi command line option, ARM: ARM Options. -* -mthumb command line option, ARM: ARM Options. -* -mthumb-interwork command line option, ARM: ARM Options. -* -mv850 command line option, V850: V850 Options. -* -mv850any command line option, V850: V850 Options. -* -mv850e command line option, V850: V850 Options. -* -no-relax option, i960: Options-i960. -* -nocpp ignored (MIPS): MIPS Opts. -* -o: o. -* -R: R. -* -S, ignored on VAX: VAX-Opts. -* -t, ignored on VAX: VAX-Opts. -* -T, ignored on VAX: VAX-Opts. -* -v: v. -* -V, redundant on VAX: VAX-Opts. -* -version: v. -* -W: W. -* -wsigned_overflow command line option, V850: V850 Options. -* -wunsigned_overflow command line option, V850: V850 Options. -* . (symbol): Dot. -* .insn: MIPS insn. -* .ltorg directive, ARM: ARM Directives. -* .o: Object. -* .param on HPPA: HPPA Directives. -* .pool directive, ARM: ARM Directives. -* .set autoextend: MIPS autoextend. -* .set mipsN: MIPS ISA. -* .set noautoextend: MIPS autoextend. -* .set pop: MIPS option stack. -* .set push: MIPS option stack. -* .v850 directive, V850: V850 Directives. -* .v850e directive, V850: V850 Directives. -* 16-bit code, i386: i386-16bit. -* 29K support: AMD29K-Dependent. -* 3DNow!, i386: i386-SIMD. -* : (label): Statements. -* @word modifier, D10V: D10V-Word. -* \" (doublequote character): Strings. -* \\ (\ character): Strings. -* \b (backspace character): Strings. -* \DDD (octal character code): Strings. -* \f (formfeed character): Strings. -* \n (newline character): Strings. -* \r (carriage return character): Strings. -* \t (tab): Strings. -* \XD... (hex character code): Strings. -* a.out: Object. -* a.out symbol attributes: a.out Symbols. -* ABORT directive: ABORT. -* abort directive: Abort. -* absolute section: Ld Sections. -* addition, permitted arguments: Infix Ops. -* addresses: Expressions. -* addresses, format of: Secs Background. -* addressing modes, D10V: D10V-Addressing. -* addressing modes, D30V: D30V-Addressing. -* addressing modes, H8/300: H8/300-Addressing. -* addressing modes, H8/500: H8/500-Addressing. -* addressing modes, M680x0: M68K-Syntax. -* addressing modes, SH: SH-Addressing. -* addressing modes, Z8000: Z8000-Addressing. -* ADR reg,