[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v5 0/3] Force the C standard to gnu99
From: |
Thomas Huth |
Subject: |
[Qemu-devel] [PATCH v5 0/3] Force the C standard to gnu99 |
Date: |
Fri, 11 Jan 2019 09:17:49 +0100 |
Different versions of GCC and Clang use different versions of the C
standard by default. To avoid compilation problems with different
compilers in the future, we should enforce one language level
for all compilers. Since "gnu99" is the only usable option right now
(later versions are still marked as experimental in GCC v4.8),
we enforce compiling with -std=gnu99 now (in the third patch).
This caused some new warnings/erros to appear with clang, which are
fixed by the first two patches.
v5:
- Prefer to include headers instead of plain struct forward declarations
in the second patch.
v4:
- Avoid circular inclusion of headers and introduce xics_spapr.h
v3:
- Compile C++ code with -std=gnu++98
v2:
- Use gnu99 instead of gnu11
Thomas Huth (3):
ppc: Move spapr-related prototypes from xics.h into a seperate header
file
ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99
mode
configure: Force the C standard to gnu99
configure | 5 ++++-
hw/intc/xics_kvm.c | 1 +
hw/intc/xics_spapr.c | 1 +
hw/ppc/spapr_irq.c | 1 +
include/hw/ppc/spapr.h | 5 +++--
include/hw/ppc/spapr_xive.h | 2 --
include/hw/ppc/xics.h | 7 -------
include/hw/ppc/xics_spapr.h | 37 +++++++++++++++++++++++++++++++++++++
target/ppc/cpu.h | 13 +++++++++----
9 files changed, 56 insertions(+), 16 deletions(-)
create mode 100644 include/hw/ppc/xics_spapr.h
--
1.8.3.1
- [Qemu-devel] [PATCH v5 0/3] Force the C standard to gnu99,
Thomas Huth <=
- [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Thomas Huth, 2019/01/11
- Re: [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Cédric Le Goater, 2019/01/11
- Re: [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Greg Kurz, 2019/01/11
- Re: [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Daniel P . Berrangé, 2019/01/11
- Re: [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Philippe Mathieu-Daudé, 2019/01/11
- Re: [Qemu-devel] [PATCH v5 2/3] ppc: Fix duplicated typedefs to be able to compile with Clang in gnu99 mode, Cédric Le Goater, 2019/01/16