mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 17:49:34 -05:00
As of r356514 LLVM's libunwind is used as the DWARF unwinder on all supported CPU architectures, and GCC and its libraries will be removed soon. Retire the build infrastructure for GCC's unwinder; from here if there are any unwinder bugs (on any arch) the path forward is to fix LLVM's libunwind.
31 lines
615 B
Makefile
31 lines
615 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR=
|
|
SUBDIR.${MK_DIALOG}+= libdialog
|
|
SUBDIR.${MK_GCC}+= libgcov
|
|
.if ${MK_GCC} != "no" && ${MK_OPENMP} == "no"
|
|
SUBDIR+= libgomp
|
|
.endif
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_BSD_CRTBEGIN} == "no"
|
|
SUBDIR+= csu
|
|
.endif
|
|
|
|
.if ${MK_GNU_GREP} != "no" || ${MK_GNU_GREP_COMPAT} != "no" || \
|
|
${MK_GDB} != "no"
|
|
SUBDIR+= libregex
|
|
.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>
|