freebsd-ports/lang/gcc31/Makefile
John Polstra 67e588bd58 Make "-fsjlj-exceptions" (use setjmp/longjmp for exceptions) the
default for FreeBSD.  The standard exception implementation reliably
dumps core under FreeBSD.  Users can put "-fno-sjlj-exceptions" on
the command line if they really want to override the new default.

Configure with "--with-gnu-as" and "--with-gnu-ld".

Define "__FreeBSD__" as 3.
1998-01-23 17:49:47 +00:00

42 lines
1.3 KiB
Makefile

# New ports collection makefile for: egcs
# Version required: 1.0.1
# Date created: 9 Jan 1998
# Whom: John Polstra <jdp@polstra.com>
#
# $Id: Makefile,v 1.3 1998/01/14 07:24:54 obrien Exp $
#
DISTNAME= egcs-1.0.1
CATEGORIES= lang
MASTER_SITES= ftp://ftp.cygnus.com/pub/egcs/releases/egcs-1.0.1/ \
ftp://cambridge.cygnus.com/pub/egcs/releases/egcs-1.0.1/ \
ftp://ftp.fu-berlin.de/unix/languages/egcs/releases/egcs-1.0.1/
MAINTAINER= jdp@polstra.com
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS= --with-gnu-as --with-gnu-ld i386-unknown-freebsd
MAN1= cccp.1 g++.1 g77.1 gcc.1
FME=${PREFIX}
post-install:
@(for prog in ${PREFIX}/bin/gcc ${PREFIX}/bin/g++ ${PREFIX}/bin/c++ \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/cc1 \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/cc1obj \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/cc1plus \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/cpp \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/f771 \
${PREFIX}/lib/gcc-lib/i386-unknown-freebsd/egcs-2.90.23/ld ; \
do strip $$prog ; \
done)
if [ ! -f ${PREFIX}/info/dir ]; then \
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
fi
.for info in cpp g77 gcc
install-info ${PREFIX}/info/${info}.info ${PREFIX}/info/dir
.endfor
.include <bsd.port.mk>