From owner-cvs-all Sat Oct 28 14:26:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D565337B4E5; Sat, 28 Oct 2000 14:26:48 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75518; Sat, 28 Oct 2000 14:26:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200010282126.OAA75518@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 28 Oct 2000 14:26:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/gnu/lib Makefile src/gnu/lib/csu Makefile src/lib/csu/alpha Makefile crt1.c src/lib/csu/common crtbrand.c crtbegin.c src/lib/csu/i386-elf Makefile crt1.c crti.S crtn.S src/lib/csu/ia64 Makefile crt1.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/10/28 14:26:48 PDT Modified files: . Makefile.inc1 gnu/lib Makefile lib/csu/alpha Makefile crt1.c lib/csu/common crtbegin.c lib/csu/i386-elf Makefile crt1.c crti.S crtn.S lib/csu/ia64 Makefile crt1.c Added files: gnu/lib/csu Makefile lib/csu/common crtbrand.c Log: * Bring back the guts of crt{i,n}.S. This allows C++ exceptions to work when using the egcs and gcc-devel ports, along with GCC built from stock public FSF sources. With out this change, FreeBSD will be removed from the list of systems GCC 3.0 must be evaluated on before release. With the effort some of us put into getting FreeBSD on this list, we should not turn this effort into a waste, else we might not be worth fighting for in the future. (note that Alpha and IA-64 versions of crt{i,n}.S are needed) * Switch from our own crt{begin,in} to those created from GCC's crtstuff.c. This will allow us to switch to DWARF2 exceptions in the future, along with staying in sync with any future GCC requirements. * Break out our ELF branding bits into a seperate file. Currently this is now included by our crt1.c files (since this functionality was part of our native crtbegin.c). Later crtbrand.o will be merged in the creation of crti.o. Revision Changes Path 1.174 +3 -2 src/Makefile.inc1 1.27 +2 -2 src/gnu/lib/Makefile 1.14 +5 -5 src/lib/csu/alpha/Makefile 1.8 +2 -1 src/lib/csu/alpha/crt1.c 1.6 +2 -19 src/lib/csu/common/crtbegin.c 1.8 +4 -4 src/lib/csu/i386-elf/Makefile 1.5 +2 -1 src/lib/csu/i386-elf/crt1.c 1.5 +12 -5 src/lib/csu/i386-elf/crti.S 1.4 +6 -5 src/lib/csu/i386-elf/crtn.S 1.3 +2 -1 src/lib/csu/ia64/Makefile 1.2 +2 -1 src/lib/csu/ia64/crt1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message