c7fbd7722d
Compiler-rt and LLVM's libunwind provide a suitable replacement for libgcc.a, libgcc_eh.a, and libgcc_s.so. Remove the now-unused LLVM_LIBUNWIND block from gnu/lib/libgcc. PR: 213480 [exp-run] Reviewed by: brooks, ed Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D8189
34 lines
692 B
Makefile
34 lines
692 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= csu
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
|
SUBDIR.${MK_GCC}+= libgcov libgomp
|
|
SUBDIR.${MK_SSP}+= libssp
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_BINUTILS} != "no" && ${MK_GDB} != "no"
|
|
SUBDIR+= libreadline
|
|
.endif
|
|
|
|
.if ${MK_GNU_DIFF} != "no" || ${MK_GNU_GREP} != "no" || \
|
|
${MK_GNU_GREP_COMPAT} != "no" || ${MK_GDB} != "no"
|
|
SUBDIR+= libregex
|
|
.endif
|
|
|
|
.if ${MK_LLVM_LIBUNWIND} == "no"
|
|
SUBDIR+= libgcc
|
|
.endif
|
|
|
|
# libsupc++ uses libstdc++ headers, although 'make includes' should
|
|
# have taken care of that already.
|
|
.if ${MK_GNUCXX} != "no"
|
|
SUBDIR+= libstdc++ libsupc++
|
|
SUBDIR_DEPENDS_libsupc++:= libstdc++
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|