summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils
AgeCommit message (Collapse)Author
1998-05-04first cut on binutils/gcc support for hppa-*-openbsd*; tested on i386 hostMichael Shalayeff
1998-05-04GDB 6.3 (excluding .info files)Michael Shalayeff
1998-04-03Get needed prototypes, because of 64bit return value issues, fixes backtraceNiklas Hallqvist
1998-04-01include gprof for ports that are not gdb-onlyTodd C. Miller
1998-03-29Adapt the newer of our GDB versions to a.out ports. The main part of thisNiklas Hallqvist
commit comes from NetBSD. Also, the kernel debugging mode is a bit different but you will notice when you type gdb -k because it documents the difference
1998-03-29GDB 6.3 (excluding .info files)Niklas Hallqvist
1998-03-29GDB 6.1 (excluding .info files)Niklas Hallqvist
1998-03-29Set ALL_MODULES and INSTALL_MODULES variables to really control whatTodd C. Miller
gets built. Needed for gdb-only platforms.
1998-03-26Only build/install everything for alpha, mips, and powerpc. Others willlTodd C. Miller
just get gdb. This will be used in the future when we use the binutils gdb for all platforms. As things stand right now, this change affects nothing since only alpha, mips, and powerpc use binutils.
1998-03-26Pass in SUBDIRS variable for "make install" like we do for "make all".Todd C. Miller
Required for when we use binutils gdb for all ports.
1998-03-25don't localise .lcomm if it's defined .globlPer Fogelstrom
1997-11-04GLOBAL_AUTCONF_CACHEkstailey
1997-10-13Minor fix, mips BEPer Fogelstrom
1997-10-13More than one target vector with mips woes..Per Fogelstrom
1997-10-13be mipsPer Fogelstrom
1997-07-06Define NETBSD_CORE for all Open/NetBSD targets and sync configure+configure.inNiklas Hallqvist
1997-07-03support coredump parsing on alphaNiklas Hallqvist
1997-06-23respect NOMAN during installkstailey
1997-06-23respect NOMAN (in bulk)kstailey
1997-05-29Import of binutils-2.8.1 from Cygnus/FSFNiklas Hallqvist
1997-05-29Import of binutils-2.8.1 from Cygnus/FSFNiklas Hallqvist
1997-05-29Import of binutils-2.8.1 from Cygnus/FSFNiklas Hallqvist
1997-05-05If gdb is not configured do not build the manpage.Dale S. Rahn
This allows the powerpc port to build.
1997-05-04why install nlmconv manpage, when we don't carry the binary?Niklas Hallqvist
1997-05-02Make GNU style installation of manpages optional, like we do elsewhere.Niklas Hallqvist
1997-05-02Build gdb and gprof manpages properly.Niklas Hallqvist
1997-05-01Back out half of my changes to this file.Dale S. Rahn
The way that I had done the sign extension was incorrect, but did happen to work on the archs tested. Changed back to the correct method. This was after some conversation with Ian Lance Taylor.
1997-04-23add a lot of /bin/sh before calling scripts like config.guess and soThomas Graichen
on - this way now the whole tree builds without requiring any file being executable (binutils was the last which required it) - now ctm -> cvs checkout -> make build works just fine (aside from other bugs in the source tree :-)
1997-04-14Forgot one change...Per Fogelstrom
1997-04-14Missed this one...Per Fogelstrom
1997-04-14All mips tools should now configure with the same name (mipsel-unknown-openbsd)Per Fogelstrom
for little endian systems and (mips-unknown-openbsd) for big endian systems. gdb seems to work now but needs more testing.
1997-04-13More consistent MIPS configPer Fogelstrom
1997-04-13More consistent MIPS configPer Fogelstrom
1997-04-13More consistent MIPS configPer Fogelstrom
1997-04-12convert mips* to mips so that we find the correct files in configThomas Graichen
1997-04-12configure with --disable-gdbtk - so that gdb will also configureThomas Graichen
correctly if you have tcl/tk installed
1997-04-12reflect the new naming for openbsd: mips*-*-openbsd* instead of mips-*-openbsd*Thomas Graichen
1997-04-11Update from Cygnus + corrections to OpenBSD recognition by meNiklas Hallqvist
1997-04-05Fix -DNO_MMALLOC (needs to be in MMALLOC_CFLAGS not MMALLOC_DISABLE).Todd C. Miller
Now gdb will link.
1997-04-01don't disable the build of gdb for the alpha - it should work nowThomas Graichen
1997-04-01it's called xm-alphaobsd.h and not xm-alpha.hThomas Graichen
1997-02-18Gdb does not work on powerpc yet, do not configure or build it.Dale S. Rahn
1997-02-12Don't space text/data in shared libs by 256Mb. ld.so can't handle it withPer Fogelstrom
the shm sizing method it uses for the moment, so loading many shlibs effectively makes a proram run out of VM.
1997-02-07These changes are not complete, This does not deal with cores correctly yet.Dale S. Rahn
This checkin is an attempt to make the powerpc port have a clean build.
1997-02-07GDB 6.3 (excluding .info files)Dale S. Rahn
1997-02-07Know how to build gdb for powerpc, it doesn't work yet, but this causesDale S. Rahn
binutils to fail to configure the first time round.
1997-02-02add gdb for alpha & mips and simplify it a bitThomas Graichen
1997-02-02add OpenBSD/alpha support to gdb (taken from cgd's cygnus binutilsThomas Graichen
snapshots for NetBSD/alpha and adapted to compile with our binutils) i've just tested it roughly - but it should work and is at least a start
1997-01-26change constant handling with @l.Dale S. Rahn
if the expected argument to the opcode is unsigned, return (val & 0xffff) if the expected argument to the occode is signed, sign extend the 16 bit value short = val; val = (int) short;
1997-01-25MMALLOC_DISABLE -> MALLOC_CFLAGS to fix link problem.imp