From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avsdD-0008VY-GY for qemu-devel@nongnu.org; Thu, 28 Apr 2016 16:33:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1avsd9-0000IW-HV for qemu-devel@nongnu.org; Thu, 28 Apr 2016 16:33:51 -0400 Received: from mail.weilnetz.de ([37.221.199.173]:54855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avsd9-0000IN-CN for qemu-devel@nongnu.org; Thu, 28 Apr 2016 16:33:47 -0400 From: Stefan Weil Message-ID: <572273A7.60908@weilnetz.de> Date: Thu, 28 Apr 2016 22:33:43 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [BUG 2.6] Broken CONFIG_TPM? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developer Cc: Peter Maydell A compilation test with clang -Weverything reported this problem: config-host.h:112:20: warning: '$' in identifier [-Wdollar-in-identifier-extension] The line of code looks like this: #define CONFIG_TPM $(CONFIG_SOFTMMU) This is fine for Makefile code, but won't work as expected in C code.