* [PATCH 1/2] doc/style: CLang -> Clang
@ 2022-03-31 13:56 marcandre.lureau
2022-03-31 13:56 ` [PATCH 2/2] doc/build-platforms: document supported compilers marcandre.lureau
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: marcandre.lureau @ 2022-03-31 13:56 UTC (permalink / raw)
To: qemu-devel; +Cc: Marc-André Lureau
From: Marc-André Lureau <marcandre.lureau@redhat.com>
It's not the way it is usually written (see https://clang.llvm.org/).
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
docs/devel/style.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/devel/style.rst b/docs/devel/style.rst
index 9e66d133e15b..7ddd42b6c2c8 100644
--- a/docs/devel/style.rst
+++ b/docs/devel/style.rst
@@ -522,7 +522,7 @@ documented in the GNU Compiler Collection manual starting at version 4.0.
Automatic memory deallocation
=============================
-QEMU has a mandatory dependency either the GCC or CLang compiler. As
+QEMU has a mandatory dependency on either the GCC or the Clang compiler. As
such it has the freedom to make use of a C language extension for
automatically running a cleanup function when a stack variable goes
out of scope. This can be used to simplify function cleanup paths,
--
2.35.1.693.g805e0a68082a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] doc/build-platforms: document supported compilers
2022-03-31 13:56 [PATCH 1/2] doc/style: CLang -> Clang marcandre.lureau
@ 2022-03-31 13:56 ` marcandre.lureau
2022-03-31 14:06 ` Damien Hedde
2022-03-31 14:06 ` [PATCH 1/2] doc/style: CLang -> Clang Damien Hedde
2022-03-31 14:26 ` Philippe Mathieu-Daudé
2 siblings, 1 reply; 5+ messages in thread
From: marcandre.lureau @ 2022-03-31 13:56 UTC (permalink / raw)
To: qemu-devel; +Cc: Marc-André Lureau
From: Marc-André Lureau <marcandre.lureau@redhat.com>
According to our configure checks, this is the list of supported
compilers.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
docs/about/build-platforms.rst | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/docs/about/build-platforms.rst b/docs/about/build-platforms.rst
index c29a4b8fe649..1980c5d2476f 100644
--- a/docs/about/build-platforms.rst
+++ b/docs/about/build-platforms.rst
@@ -92,6 +92,16 @@ hosted on Linux (Debian/Fedora).
The version of the Windows API that's currently targeted is Vista / Server
2008.
+Supported compilers
+-------------------
+
+To compile, QEMU requires either:
+
+- GCC >= 7.4.0
+- Clang >= 6.0
+- XCode Clang >= 10.0
+
+
.. _HomeBrew: https://brew.sh/
.. _MacPorts: https://www.macports.org/
.. _Repology: https://repology.org/
--
2.35.1.693.g805e0a68082a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] doc/build-platforms: document supported compilers
2022-03-31 13:56 ` [PATCH 2/2] doc/build-platforms: document supported compilers marcandre.lureau
@ 2022-03-31 14:06 ` Damien Hedde
0 siblings, 0 replies; 5+ messages in thread
From: Damien Hedde @ 2022-03-31 14:06 UTC (permalink / raw)
To: marcandre.lureau, qemu-devel
Reviewed-by: Damien Hedde <damien.hedde@greensocs.com>
On 3/31/22 15:56, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> According to our configure checks, this is the list of supported
> compilers.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> docs/about/build-platforms.rst | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/docs/about/build-platforms.rst b/docs/about/build-platforms.rst
> index c29a4b8fe649..1980c5d2476f 100644
> --- a/docs/about/build-platforms.rst
> +++ b/docs/about/build-platforms.rst
> @@ -92,6 +92,16 @@ hosted on Linux (Debian/Fedora).
> The version of the Windows API that's currently targeted is Vista / Server
> 2008.
>
> +Supported compilers
> +-------------------
> +
> +To compile, QEMU requires either:
> +
> +- GCC >= 7.4.0
> +- Clang >= 6.0
> +- XCode Clang >= 10.0
> +
> +
> .. _HomeBrew: https://brew.sh/
> .. _MacPorts: https://www.macports.org/
> .. _Repology: https://repology.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] doc/style: CLang -> Clang
2022-03-31 13:56 [PATCH 1/2] doc/style: CLang -> Clang marcandre.lureau
2022-03-31 13:56 ` [PATCH 2/2] doc/build-platforms: document supported compilers marcandre.lureau
@ 2022-03-31 14:06 ` Damien Hedde
2022-03-31 14:26 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 5+ messages in thread
From: Damien Hedde @ 2022-03-31 14:06 UTC (permalink / raw)
To: marcandre.lureau, qemu-devel
Reviewed-by: Damien Hedde <damien.hedde@greensocs.com>
On 3/31/22 15:56, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> It's not the way it is usually written (see https://clang.llvm.org/).
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> docs/devel/style.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/docs/devel/style.rst b/docs/devel/style.rst
> index 9e66d133e15b..7ddd42b6c2c8 100644
> --- a/docs/devel/style.rst
> +++ b/docs/devel/style.rst
> @@ -522,7 +522,7 @@ documented in the GNU Compiler Collection manual starting at version 4.0.
> Automatic memory deallocation
> =============================
>
> -QEMU has a mandatory dependency either the GCC or CLang compiler. As
> +QEMU has a mandatory dependency on either the GCC or the Clang compiler. As
> such it has the freedom to make use of a C language extension for
> automatically running a cleanup function when a stack variable goes
> out of scope. This can be used to simplify function cleanup paths,
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] doc/style: CLang -> Clang
2022-03-31 13:56 [PATCH 1/2] doc/style: CLang -> Clang marcandre.lureau
2022-03-31 13:56 ` [PATCH 2/2] doc/build-platforms: document supported compilers marcandre.lureau
2022-03-31 14:06 ` [PATCH 1/2] doc/style: CLang -> Clang Damien Hedde
@ 2022-03-31 14:26 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2022-03-31 14:26 UTC (permalink / raw)
To: marcandre.lureau, qemu-devel
On 31/3/22 15:56, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> It's not the way it is usually written (see https://clang.llvm.org/).
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> docs/devel/style.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-03-31 14:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-31 13:56 [PATCH 1/2] doc/style: CLang -> Clang marcandre.lureau
2022-03-31 13:56 ` [PATCH 2/2] doc/build-platforms: document supported compilers marcandre.lureau
2022-03-31 14:06 ` Damien Hedde
2022-03-31 14:06 ` [PATCH 1/2] doc/style: CLang -> Clang Damien Hedde
2022-03-31 14:26 ` Philippe Mathieu-Daudé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).