From owner-cvs-all@FreeBSD.ORG Fri Jun 25 06:50:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00AB416A4CE; Fri, 25 Jun 2004 06:50:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0B0643D53; Fri, 25 Jun 2004 06:50:33 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5P6msMt008013; Fri, 25 Jun 2004 06:48:54 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5P6mscH008012; Fri, 25 Jun 2004 06:48:54 GMT (envelope-from marcel) Message-Id: <200406250648.i5P6mscH008012@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 25 Jun 2004 06:48:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb Makefile Makefile.inc src/gnu/usr.bin/gdb/arch/alpha Makefile config.h init.c src/gnu/usr.bin/gdb/arch/amd64 Makefile config.h init.c src/gnu/usr.bin/gdb/arch/i386 Makefile config.h init.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jun 2004 06:50:34 -0000 marcel 2004-06-25 06:48:54 UTC FreeBSD src repository Added files: gnu/usr.bin/gdb Makefile Makefile.inc gnu/usr.bin/gdb/arch/alpha Makefile config.h init.c gnu/usr.bin/gdb/arch/amd64 Makefile config.h init.c gnu/usr.bin/gdb/arch/i386 Makefile config.h init.c gnu/usr.bin/gdb/arch/ia64 Makefile config.h init.c gnu/usr.bin/gdb/arch/sparc64 Makefile config.h init.c gnu/usr.bin/gdb/doc Makefile gnu/usr.bin/gdb/gdb Makefile gdb.1 gnu/usr.bin/gdb/gdbtui Makefile gnu/usr.bin/gdb/libgdb Makefile Log: Add bmake glue for gdb 6.1.1. Supports alpha, amd64, i386, ia64 and sparc64. Note that the debugger doesn't support threading, nor kernel debugging yet. Revision Changes Path 1.8 +5 -0 src/gnu/usr.bin/gdb/Makefile (new) 1.8 +50 -0 src/gnu/usr.bin/gdb/Makefile.inc (new) 1.1 +11 -0 src/gnu/usr.bin/gdb/arch/alpha/Makefile (new) 1.1 +551 -0 src/gnu/usr.bin/gdb/arch/alpha/config.h (new) 1.1 +224 -0 src/gnu/usr.bin/gdb/arch/alpha/init.c (new) 1.1 +16 -0 src/gnu/usr.bin/gdb/arch/amd64/Makefile (new) 1.1 +551 -0 src/gnu/usr.bin/gdb/arch/amd64/config.h (new) 1.1 +230 -0 src/gnu/usr.bin/gdb/arch/amd64/init.c (new) 1.1 +15 -0 src/gnu/usr.bin/gdb/arch/i386/Makefile (new) 1.1 +551 -0 src/gnu/usr.bin/gdb/arch/i386/config.h (new) 1.1 +232 -0 src/gnu/usr.bin/gdb/arch/i386/init.c (new) 1.1 +10 -0 src/gnu/usr.bin/gdb/arch/ia64/Makefile (new) 1.1 +551 -0 src/gnu/usr.bin/gdb/arch/ia64/config.h (new) 1.1 +226 -0 src/gnu/usr.bin/gdb/arch/ia64/init.c (new) 1.1 +11 -0 src/gnu/usr.bin/gdb/arch/sparc64/Makefile (new) 1.1 +551 -0 src/gnu/usr.bin/gdb/arch/sparc64/config.h (new) 1.1 +228 -0 src/gnu/usr.bin/gdb/arch/sparc64/init.c (new) 1.12 +28 -0 src/gnu/usr.bin/gdb/doc/Makefile (new) 1.41 +17 -0 src/gnu/usr.bin/gdb/gdb/Makefile (new) 1.8 +385 -0 src/gnu/usr.bin/gdb/gdb/gdb.1 (new) 1.1 +18 -0 src/gnu/usr.bin/gdb/gdbtui/Makefile (new) 1.1 +52 -0 src/gnu/usr.bin/gdb/libgdb/Makefile (new)