View | Details | Raw Unified | Return to bug 164606
Collapse All | Expand All

(-)Makefile (-1 / +6 lines)
Lines 26-32 Link Here
26
PORTDOCS=	ccache-howto-freebsd.txt MANUAL.html
26
PORTDOCS=	ccache-howto-freebsd.txt MANUAL.html
27
27
28
OPTIONS=	CLANGLINK	"Create clang compiler links if clang is installed" off \
28
OPTIONS=	CLANGLINK	"Create clang compiler links if clang is installed" off \
29
		LLVMLINK	"Create llvm compiler links if llvm is installed" off
29
		LLVMLINK	"Create llvm compiler links if llvm is installed" off \
30
		STATIC		"Statically build ccache" off
30
31
31
.include <bsd.port.pre.mk>
32
.include <bsd.port.pre.mk>
32
33
Lines 47-52 Link Here
47
CCACHE_COMPILERS+=	llvm-gcc llvm-c++ llvm-g++
48
CCACHE_COMPILERS+=	llvm-gcc llvm-c++ llvm-g++
48
.endif
49
.endif
49
50
51
.if defined(WITH_STATIC)
52
LDFLAGS+=		"--static"
53
.endif
54
50
CCACHE_COMPILERS+=	${EXTRA_COMPILERS}
55
CCACHE_COMPILERS+=	${EXTRA_COMPILERS}
51
SUB_LIST+=	CCACHE_COMPILERS="${CCACHE_COMPILERS}" \
56
SUB_LIST+=	CCACHE_COMPILERS="${CCACHE_COMPILERS}" \
52
		CCLINKDIR="${CCLINKDIR}" \
57
		CCLINKDIR="${CCLINKDIR}" \

Return to bug 164606