From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:41833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ghLNL-0006MC-KU for qemu-devel@nongnu.org; Wed, 09 Jan 2019 16:27:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ghLNH-0001AY-Uf for qemu-devel@nongnu.org; Wed, 09 Jan 2019 16:26:58 -0500 References: <1547051976-13982-1-git-send-email-thuth@redhat.com> <1547051976-13982-3-git-send-email-thuth@redhat.com> From: Paolo Bonzini Message-ID: Date: Wed, 9 Jan 2019 22:26:27 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 2/2] configure: Force the C standard to gnu99 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , Thomas Huth , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Markus Armbruster , qemu-ppc@nongnu.org, Richard Henderson On 09/01/19 19:10, Philippe Mathieu-Daud=C3=A9 wrote: > Using '-std=3Dgnu++98' for g++ v4.8 looks like a good compromise to the > issues Daniel mentioned (still 'experimental'). >=20 > Reviewed-by: Philippe Mathieu-Daud=C3=A9 C++11 has many new features that almost make it an entirely different language (the main being rvalue references, and type inference with auto and decltype). If it works for GCC 4.8, I would prefer using that instead of g++98. Paolo