summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
...
| * Initial import of gdbserver FreeBSD supportpst1997-04-252-0/+450
| |
* | Initial import of gdbserver FreeBSD supportpst1997-04-252-0/+450
| |
* | This commit was generated by cvs2svn to compensate for changes in r25147,pst1997-04-251-0/+17
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of gdbreplay build structurepst1997-04-251-0/+17
|
* Initial import of gdbreplay build structurepst1997-04-251-0/+17
|
* Fixed `make depend'. The previous change reduced it to making onlybde1997-04-251-1/+3
| | | | | config.h (which isn't used directly). Added a comment about the indirect use of config.h.
* Don't complain about no input files for `ld -f'. This fixes spuriousbde1997-04-251-2/+5
| | | | | | (ignored :-() errors for `make depend' in /sys/i386/boot/*. It's natural for there to be no libraries there and inconvenient to check for this in bsd.prog.mk.
* Fill the padding at the end of the runtime strings with zeros,jdp1997-04-251-2/+6
| | | | | | instead of leaving random data there. This makes the linker's output files more deterministic -- an important property for regression tests.
* Understand `--' to end processing of command options.wosch1997-04-191-5/+5
| | | | | This means one search for a string starting with a dash. Fix also filenames starting with a dash. Close PR #3349
* Fixed `make depend' and related bogons. LDFLAGS was used forbde1997-04-161-10/+2
| | | | | | | | | | | ld-specific flags. LDFLAGS is really for ld-related flags for cc, not for ld, and some flags, e.g., -Bshareable, mean completely different things to cc and ld. Having the wrong things in LDFLAGS also broke the standard ${PROG} target. This was kludged around by using a special rule that depended on LDFLAGS being bogus. Fixing `make depend' broke the special rule but fixed the standard rule (except in the DESTDIR case, which was handled more strictly here than elsewhere).
* Fixed synopsis. There was a missing arg, 3 args with the wrong type,bde1997-04-131-12/+22
| | | | | and many apparent dependendcies on <sys/types.h> from use of u_char. <dialog.h> avoids u_char, so avoid it here too.
* Don't create anything on the disk if -O (aka --to-stdout) was given.joerg1997-04-131-1/+4
| | | | PR: gnu/3247: tar -O creates directories...
* Close PR#3118jkh1997-04-131-1/+1
|
* Don't descend into the perl directory if it isn't there (eg: cvsuppeter1997-04-121-2/+6
| | | | refuse file), or if NOPERL is defined (eg: in /etc/make.conf)
* Don't print nonexistent library names for `ld -f [-Lfoo] -lbar'. Abde1997-04-111-2/+10
| | | | | | | | | dependency on `bar' is very unlikely to be correct. This is a quick fix for broken dependencies in gdb and many other places. The dependencies on internal libraries are now missing instead of wrong when `make depend' is run before the libraries are created.
* Make depend rely on config.hjkh1997-04-111-1/+1
|
* Fixed bogus existence test related to searching for a nearby objbde1997-04-102-12/+4
| | | | | | | directory. The object (= current) directory always exists, so don't search for it. Use ${.TARGET} instead of deprecated $@.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-6/+1
| | | | | directory. manpath.1 is always in the current (= object) directory, so don't search for it.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-6/+1
| | | | | directory. man.1 is always in the current (= object) directory, so don't search for it.
* Fixed bogus existence test related to searching for a nearby objbde1997-04-101-18/+9
| | | | | | | | | | | | directory. config.h is always in the current (= object) directory, so don't search for it. config.h is not a source for the library, so don't put it in SRCS and don't make the library depend on it. Don't put unused flags in CFLAGS. Simplify using INTERNALLIB*.
* Oops. Missed the Complex number add case of code generation.. :-]peter1997-04-091-4/+4
| | | | | | Fixes PR#3239. Submitted by: Takeshi WATANABE <watanabe@crayon.earth.s.kobe-u.ac.jp>
* Fixed bugs involving paths:bde1997-04-071-0/+11
| | | | | | | | | | | - LDADD was wrong for non-uniform obj trees. - DPADD was wrong for separate obj tres. Cleaned up nearby messes, mostly ones invoving paths: - ../libtxi was useless. - there were too many redefinitions and too many different names for the same paths. - use INTERNALLIB* to simplify libtxi/Makefile.
* Fixed bugs involving paths:bde1997-04-075-76/+36
| | | | | | | | | | | - LDADD was wrong for non-uniform obj trees. - DPADD was wrong for separate obj tres. Cleaned up nearby messes, mostly ones invoving paths: - -I../libtxi was useless. - there were too many redefinitions and too many different names for the same paths. - use INTERNALLIB* to simplify libtxi/Makefile.
* Attempt to patch up gdb so that it has a chance of working with the newpeter1997-04-078-6/+716
| | | | | | | | | | | UPAGES layout.. it was entirely too comfortable with reading and writing the U area before. I've changed it to use PT_GETREGS/PT_PUTREGS ptrace ops instead of READ_U etc. The code to read the registers from core dumps is a bandaid at best. It seems to have problems reading core dumps from dynamic linked executables still, but at least static dumps work. I desperately need help from a gdb/bfd expert. :-) HELP!!
* Bmake Makefile for building info files for GNU cpio.obrien1997-04-031-0/+15
|
* Bmake Makefiles for GNU cpio.obrien1997-04-031-0/+24
|
* Make way for FreeBSD files with CPIO bits in src/contrib/cpioobrien1997-04-0343-11621/+0
|
* Remove a doubled word. Closes PR# 3163.mpp1997-04-011-1/+0
| | | | Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
* Toast dummy lchown(), it's in libc now.peter1997-03-312-28/+1
|
* YAMF22jkh1997-03-291-2/+2
|
* generate c-exp.c, f-exp.c and m2-exp.c with yacc rather than usingpeter1997-03-292-4/+10
| | | | the generated ones in the gdb dist.
* Protect against multiple inclusion (All the CFLAGS+= items make the ccpeter1997-03-291-1/+4
| | | | command lines get rather long). (bsd.lib.mk is particularly bad at this)
* Support the ".p2align" directive, which is standard in newer versionsjdp1997-03-291-1/+2
| | | | | | | | | | | | | of binutils. For all architectures and object file formats, ".p2align n" aligns to the next multiple of 2**n. Thus for FreeBSD, it does exactly the same thing as the traditional ".align". The old ".align" directive has different meanings in different object formats, and even in different variants of a.out. Sometimes is aligns to a multiple of n, and other times it aligns to a multiple of 2**n. ".p2align" is preferable for use in assembly language sources, since it makes them more portable to object formats other than a.out.
* Change a "=" to "?=" to make it easier to override the binary formatjdp1997-03-281-3/+3
| | | | from the environment.
* FreeBSD modifications and notes for GNU cpio.obrien1997-03-261-0/+10
|
* Add a new "-f" option to the linker, to print the resolved pathsjdp1997-03-223-5/+43
| | | | | | of all the files and libraries in the command line. Submitted by: bde (Bruce Evans)
* Make makewhatis(1) happy.wosch1997-03-211-4/+2
|
* Fix initstate() cast to match Lite2ache1997-03-171-2/+2
|
* fix compilation warnings in patch... (with slight modification)jmg1997-03-175-6/+34
| | | | | | | | also remove -Wall that I acidentally committed last time I was here... Submitted-by: Philippe Charnier Closes PR#2998
* Remove unnecessary chmod()'s. This should likely go in other branches.guido1997-03-151-3/+1
| | | | Obtained from: aleph1@UNDERGROUND.ORG on Bugtraq
* delete the LINKS line (link gdb to kgdb) by popular demand.gj1997-03-152-6/+2
|
* Support german mdoc man pages (currently no german mdoc man page exists).wosch1997-03-141-3/+3
| | | | Support japanese FreeBSD man pages, Jpman Project.
* Support german Linux/GNU man pages.wosch1997-03-131-2/+2
|
* add LINKS line to Makefile to automatically produce a link to kgdbgj1997-03-124-2/+20
| | | | | | | define START_PROGRESS in nm.h to check whether gdb was invoked as kgdb and set the kernel_debugging flag in that case. 2.2 candidate ?
* Oops.. Missed this one too. getopt is in unistd.h now, not stdlib.hpeter1997-03-111-2/+2
|
* Fix the getopt() prototype to match the system one.peter1997-03-111-1/+1
|
* Build under Lite2 includespeter1997-03-111-1/+1
|
* Fix srandom arg type according to Lite2ache1997-03-111-2/+2
|
* Fixed style bugs in install rule (afterinstall -> beforeinstall, etc).bde1997-03-091-7/+3
| | | | Removed stale comment.
* Fix a number of typos, one of which is part of PR# 2917.mpp1997-03-091-4/+4
|
OpenPOWER on IntegriCloud