diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2023-04-24 13:16:50 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-04-28 18:13:37 +0200 |
commit | 531f4f1d9db1c2046cd5fc04ed9b750fdc9c9790 (patch) | |
tree | 9d66fd7884052efe4dde7b4b0e74c7391da0f213 /devel | |
parent | misc/vfc: fix build on armv7 (diff) |
devel/build2: disable ccache
The port apparently doesn't like being built with ccache and refuses
to configure under these circumstances.
MFH: 2023Q2
Diffstat (limited to 'devel')
-rw-r--r-- | devel/build2/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/build2/Makefile b/devel/build2/Makefile index 34a2a70b22fc..329a5409f2a1 100644 --- a/devel/build2/Makefile +++ b/devel/build2/Makefile @@ -15,6 +15,11 @@ BROKEN_i386= error: timestamp is not lock-free on this architecture USES= gmake pkgconfig sqlite tar:xz +# warning: clang@/usr/local/libexec/ccache/clang looks like a ccache wrapper +# info: ccache cannot be used as a C compiler +# info: use config.c to override +NO_CCACHE= yes + pre-build: # phase 1 @cd ${WRKSRC}/build2 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} bootstrap.gmake ${_MAKE_JOBS} |