aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2020-02-03 13:50:15 +0000
committerEd Maste <emaste@FreeBSD.org>2020-02-03 13:50:15 +0000
commit3b387214e678be47baeff270ea3f5321cfe6fd63 (patch)
treef4b2321412f1a1f1b1f8c2630480e2f98107a1d5 /gnu
parenta58fc7cb88726241333dc67449bac1a7c153fb4a (diff)
downloadsrc-3b387214e678be47baeff270ea3f5321cfe6fd63.tar.gz
src-3b387214e678be47baeff270ea3f5321cfe6fd63.zip
remove stale gnu/lib/csu directory
As of r357338 gnu/lib/csu is never used.
Notes
Notes: svn path=/head/; revision=357444
Diffstat (limited to 'gnu')
-rw-r--r--gnu/lib/csu/Makefile74
-rw-r--r--gnu/lib/csu/Makefile.depend13
2 files changed, 0 insertions, 87 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile
deleted file mode 100644
index b2aff8e6fba0..000000000000
--- a/gnu/lib/csu/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# $FreeBSD$
-
-.include <src.opts.mk>
-MK_SSP= no
-
-GCCDIR= ${SRCTOP}/contrib/gcc
-GCCLIB= ${SRCTOP}/contrib/gcclibs
-CCDIR= ${SRCTOP}/gnu/usr.bin/cc
-.include "${CCDIR}/Makefile.tgt"
-.include "${CCDIR}/cc_tools/Makefile.hdrs"
-
-.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}
-
-SRCS= crtstuff.c ${COMMONHDRS}
-OBJS= crtbegin.o crtend.o crtbeginT.o
-SOBJS= crtbeginS.o crtendS.o
-DEPENDOBJS+= ${OBJS} ${SOBJS}
-CSTD?= gnu89
-CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR -DDT_CONFIG -D__GLIBC__=3
-CFLAGS.gcc+= -finhibit-size-directive -fno-toplevel-reorder
-CFLAGS+= -fno-inline-functions -fno-exceptions \
- -fno-zero-initialized-in-bss -fno-asynchronous-unwind-tables \
- -fno-omit-frame-pointer
-CFLAGS+= -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. \
- -I${CCDIR}/cc_tools
-CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}
-
-.if ${TARGET_CPUARCH} == "arm"
-CFLAGS+= -DTARGET_ARM_EABI
-.endif
-
-.if ${MACHINE_CPUARCH} == "sparc64"
-TGTOBJS= crtfastmath.o
-SRCS+= crtfastmath.c
-.endif
-BEGINSRC?= crtstuff.c
-ENDSRC?= crtstuff.c
-
-FILES= ${OBJS} ${SOBJS} ${TGTOBJS}
-FILESMODE= ${LIBMODE}
-FILESOWN= ${LIBOWN}
-FILESGRP= ${LIBGRP}
-FILESDIR= ${LIBDIR}
-# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
-.undef LIBRARIES_ONLY
-
-${OBJS} ${SOBJS}: ${SRCS:M*.h}
-
-CLEANFILES= ${OBJS} ${SOBJS} ${TGTOBJS}
-
-crtbegin.o: ${BEGINSRC}
- ${CC} ${CFLAGS} -g0 -DCRT_BEGIN \
- -c -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
-
-crtbeginT.o: ${BEGINSRC}
- ${CC} ${CFLAGS} -g0 -DCRT_BEGIN -DCRTSTUFFT_O \
- -c -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
-
-crtbeginS.o: ${BEGINSRC}
- ${CC} ${CFLAGS} -g0 -DCRT_BEGIN ${CRTS_CFLAGS} \
- -c -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
-
-crtend.o: ${ENDSRC}
- ${CC} ${CFLAGS} -g0 -DCRT_END \
- -c -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
-
-crtendS.o: ${ENDSRC}
- ${CC} ${CFLAGS} -g0 -DCRT_END ${CRTS_CFLAGS} \
- -c -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
-
-COMMONHDRS+= tm.h tconfig.h options.h
-CLEANFILES+= ${COMMONHDRS} optionlist cs-tconfig.h cs-tm.h
-
-.include <bsd.lib.mk>
diff --git a/gnu/lib/csu/Makefile.depend b/gnu/lib/csu/Makefile.depend
deleted file mode 100644
index 18be76b0cb6f..000000000000
--- a/gnu/lib/csu/Makefile.depend
+++ /dev/null
@@ -1,13 +0,0 @@
-# $FreeBSD$
-# Autogenerated - do NOT edit!
-
-DIRDEPS = \
- include \
- include/xlocale \
-
-
-.include <dirdeps.mk>
-
-.if ${DEP_RELDIR} == ${_DEP_RELDIR}
-# local dependencies - needed for -jN in clean tree
-.endif