From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46610) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYfhP-0006no-Ao for qemu-devel@nongnu.org; Thu, 19 Mar 2015 15:01:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYfhN-0005aF-Td for qemu-devel@nongnu.org; Thu, 19 Mar 2015 15:01:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYfhN-0005a3-PP for qemu-devel@nongnu.org; Thu, 19 Mar 2015 15:01:41 -0400 From: John Snow Date: Thu, 19 Mar 2015 15:01:37 -0400 Message-Id: <1426791697-17895-5-git-send-email-jsnow@redhat.com> In-Reply-To: <1426791697-17895-1-git-send-email-jsnow@redhat.com> References: <1426791697-17895-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [PATCH v3 4/4] configure: Add workaround for ccache and clang List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, John Snow , stefanha@redhat.com Test if ccache is interfering with our life, and disable its habit of trying to compile already pre-processed versions of code if so. In particular, clang has different semantic warnings based on if the warning arose from a macro or not. By trying to build preprocessed versions of code, we get more errors than we should. ccache allows us to disable this feature, opting instead to compile the original version instead of its preprocessed version. This makes ccache much slower for cache misses, but at least it becomes usable with QEMU/clang. Thanks to Peter Eisentraut for his writeup on the issue: http://peter.eisentraut.org/blog/2014/12/01/ccache-and-clang-part-3/ Signed-off-by: John Snow --- configure | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/configure b/configure index fbcbf50..75219a9 100755 --- a/configure +++ b/configure @@ -4172,6 +4172,33 @@ if compile_prog "" "" ; then getauxval=yes fi +######################################## +# check if ccache is interfering with +# semantic analysis of macros + +ccache=no +cat > $TMPC << EOF +static const int Z = 1; +#define fn() ({ Z; }) +#define TAUT(X) ((X) == Z) +#define PAREN(X, Y) (X == Y) +#define ID(X) (X) +int main(int argc, char *argv[]) +{ + int x = 0, y = 0; + x = ID(x); + x = fn(); + fn(); + if (PAREN(x, y)) return 0; + if (TAUT(Z)) return 0; + return 0; +} +EOF + +if ! compile_object; then + ccache=yes +fi + ########################################## # End of CC checks # After here, no more $cc or $ld runs @@ -5462,6 +5489,10 @@ if test "$numa" = "yes"; then echo "CONFIG_NUMA=y" >> $config_host_mak fi +if test "$ccache" = "yes"; then + echo "export CCACHE_CPP2=y" >> $config_host_mak +fi + # build tree in object directory in case the source is not in the current directory DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests" DIRS="$DIRS fsdev" -- 2.1.0