Remove the partial support for a shared -lcc_int, since it's been unusable

for a fair while.  cc1, cc1plus etc have been linked static for some time.
This commit is contained in:
Peter Wemm 1996-09-21 14:27:38 +00:00
parent ec16abb2c5
commit 8fb64f20b5
7 changed files with 15 additions and 22 deletions

View File

@ -1,8 +1,10 @@
#
# $Id: Makefile,v 1.9 1996/05/07 23:15:14 wosch Exp $
# $Id: Makefile,v 1.11 1996/09/19 15:53:44 peter Exp $
#
LIB= gcc
# Install libgcc_pic.a, since ld.so uses it.
INSTALL_PIC_ARCHIVE= yes
#

View File

@ -1,5 +1,5 @@
#
# $Id$
# $Id: Makefile.inc,v 1.15 1996/09/19 15:38:01 peter Exp $
#
# Sometimes this is .include'd several times...
@ -46,12 +46,6 @@ LIBDESTDIR= ${.OBJDIR}/../cc_int
LIBDESTDIR= ${.CURDIR}/../cc_int
.endif
# XXX LDDESTDIR isn't a directory and there is no standard name for the dir
LDDESTDIR= -L${LIBDESTDIR}
.if defined(SHARED_LIBCC_INT)
LIBCC_INT= ${LIBDESTDIR}/libcc_int.so.272.0
.else
LIBCC_INT= ${LIBDESTDIR}/libcc_int.a
.endif
.endif

View File

@ -1,5 +1,5 @@
#
# $Id$
# $Id: Makefile,v 1.8 1996/09/19 15:38:33 peter Exp $
#
PROG = cc1
@ -10,6 +10,6 @@ BINDIR= /usr/libexec
NOMAN= 1
NOSHARED= true
DPADD+= ${LIBCC_INT}
LDADD+= -lcc_int
LDADD+= ${LIBCC_INT}
.include <bsd.prog.mk>

View File

@ -1,5 +1,5 @@
#
# $Id$
# $Id: Makefile,v 1.1 1996/09/19 15:39:20 peter Exp $
#
PROG = cc1obj
@ -10,6 +10,6 @@ BINDIR= /usr/libexec
NOMAN= 1
NOSHARED= true
DPADD+= ${LIBCC_INT}
LDADD+= -lcc_int
LDADD+= ${LIBCC_INT}
.include <bsd.prog.mk>

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.7 1995/10/02 16:37:16 wollman Exp $
# $Id: Makefile,v 1.8 1996/09/19 15:39:23 peter Exp $
#
#First, so that we get cp/tree.c and cp/expr.c instead of the C version
@ -12,9 +12,9 @@ SRCS = parse.c \
ptree.c repo.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c
BINDIR= /usr/libexec
NOMAN= 1
NOSHARED= makes_it_smaller_faster
NOSHARED= true
DPADD+= ${LIBCC_INT}
LDADD+= -lcc_int
LDADD+= ${LIBCC_INT}
CFLAGS+= -I. # I mean it.
parse.c parse.h: parse.y

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.8 1995/03/13 01:30:02 ache Exp $
# $Id: Makefile,v 1.9 1996/09/19 15:42:15 peter Exp $
#
.include "../Makefile.inc"
@ -19,11 +19,6 @@ SRCS= bc-emit.c bc-optab.c \
LIB= cc_int
NOPROFILE= no thanks
.if defined(SHARED_LIB_CC_INT)
INTERNALLIB= no thanks
SHLIB_MAJOR= 272
SHLIB_MINOR= 1
.else
NOPIC= no thanks
install:

View File

@ -1,8 +1,10 @@
#
# $Id: Makefile,v 1.9 1996/05/07 23:15:14 wosch Exp $
# $Id: Makefile,v 1.11 1996/09/19 15:53:44 peter Exp $
#
LIB= gcc
# Install libgcc_pic.a, since ld.so uses it.
INSTALL_PIC_ARCHIVE= yes
#