We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 784a849 + 7f410b3 commit 9bfe296Copy full SHA for 9bfe296
configure
@@ -970,6 +970,13 @@ then
970
putvar CFG_CCACHE_CPP2
971
fi
972
973
+if [ ! -z "$CFG_ENABLE_CCACHE" ]
974
+then
975
+ CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
976
+ putvar CFG_CCACHE_BASEDIR
977
+fi
978
+
979
980
if [ ! -z $BAD_PANDOC ]
981
then
982
CFG_PANDOC=
mk/platform.mk
@@ -396,6 +396,11 @@ ifeq ($(CFG_CCACHE_CPP2),1)
396
export CCACHE_CPP
397
endif
398
399
+ifdef CFG_CCACHE_BASEDIR
400
+ CCACHE_BASEDIR=$(CFG_CCACHE_BASEDIR)
401
+ export CCACHE_BASEDIR
402
+endif
403
404
define CFG_MAKE_TOOLCHAIN
405
CFG_COMPILE_C_$(1) = $$(CC_$(1)) \
406
$$(CFG_GCCISH_CFLAGS) \
0 commit comments