public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform
@ 2020-07-13 12:06 Florian Weimer
  2020-08-03  6:03 ` Florian Weimer
  2020-08-03 16:56 ` David Edelsohn
  0 siblings, 2 replies; 3+ messages in thread
From: Florian Weimer @ 2020-07-13 12:06 UTC (permalink / raw)
  To: gcc-patches; +Cc: dje.gcc, doko, wschmidt

The intent was that this was implied by powerpc64-unknown-linux-gnu,
but this not very obvious because of the ELFv1 vs ELFv2 ABI
differences.

---
 htdocs/gcc-10/criteria.html | 1 +
 htdocs/gcc-11/criteria.html | 1 +
 htdocs/gcc-9/criteria.html  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/htdocs/gcc-10/criteria.html b/htdocs/gcc-10/criteria.html
index b870b829..10144710 100644
--- a/htdocs/gcc-10/criteria.html
+++ b/htdocs/gcc-10/criteria.html
@@ -111,6 +111,7 @@ application testing.</p>
 <li>i686-pc-linux-gnu</li>
 <li>mipsisa64-elf</li>
 <li>powerpc64-unknown-linux-gnu</li>
+<li>powerpc64le-unknown-linux-gnu</li>
 <li>sparc-sun-solaris2.11</li>
 <li>x86_64-pc-linux-gnu</li>
 </ul>
diff --git a/htdocs/gcc-11/criteria.html b/htdocs/gcc-11/criteria.html
index cef92821..adf566e1 100644
--- a/htdocs/gcc-11/criteria.html
+++ b/htdocs/gcc-11/criteria.html
@@ -111,6 +111,7 @@ application testing.</p>
 <li>i686-pc-linux-gnu</li>
 <li>mipsisa64-elf</li>
 <li>powerpc64-unknown-linux-gnu</li>
+<li>powerpc64le-unknown-linux-gnu</li>
 <li>sparc-sun-solaris2.11</li>
 <li>x86_64-pc-linux-gnu</li>
 </ul>
diff --git a/htdocs/gcc-9/criteria.html b/htdocs/gcc-9/criteria.html
index d434646c..f75bf990 100644
--- a/htdocs/gcc-9/criteria.html
+++ b/htdocs/gcc-9/criteria.html
@@ -111,6 +111,7 @@ application testing.</p>
 <li>i686-pc-linux-gnu</li>
 <li>mipsisa64-elf</li>
 <li>powerpc64-unknown-linux-gnu</li>
+<li>powerpc64le-unknown-linux-gnu</li>
 <li>sparc-sun-solaris2.11</li>
 <li>x86_64-pc-linux-gnu</li>
 </ul>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform
  2020-07-13 12:06 [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform Florian Weimer
@ 2020-08-03  6:03 ` Florian Weimer
  2020-08-03 16:56 ` David Edelsohn
  1 sibling, 0 replies; 3+ messages in thread
From: Florian Weimer @ 2020-08-03  6:03 UTC (permalink / raw)
  To: Florian Weimer via Gcc-patches; +Cc: doko, wschmidt, dje.gcc, Jeff Law

* Florian Weimer via Gcc-patches:

> The intent was that this was implied by powerpc64-unknown-linux-gnu,
> but this not very obvious because of the ELFv1 vs ELFv2 ABI
> differences.
>
> ---
>  htdocs/gcc-10/criteria.html | 1 +
>  htdocs/gcc-11/criteria.html | 1 +
>  htdocs/gcc-9/criteria.html  | 1 +
>  3 files changed, 3 insertions(+)
>
> diff --git a/htdocs/gcc-10/criteria.html b/htdocs/gcc-10/criteria.html
> index b870b829..10144710 100644
> --- a/htdocs/gcc-10/criteria.html
> +++ b/htdocs/gcc-10/criteria.html
> @@ -111,6 +111,7 @@ application testing.</p>
>  <li>i686-pc-linux-gnu</li>
>  <li>mipsisa64-elf</li>
>  <li>powerpc64-unknown-linux-gnu</li>
> +<li>powerpc64le-unknown-linux-gnu</li>
>  <li>sparc-sun-solaris2.11</li>
>  <li>x86_64-pc-linux-gnu</li>
>  </ul>
> diff --git a/htdocs/gcc-11/criteria.html b/htdocs/gcc-11/criteria.html
> index cef92821..adf566e1 100644
> --- a/htdocs/gcc-11/criteria.html
> +++ b/htdocs/gcc-11/criteria.html
> @@ -111,6 +111,7 @@ application testing.</p>
>  <li>i686-pc-linux-gnu</li>
>  <li>mipsisa64-elf</li>
>  <li>powerpc64-unknown-linux-gnu</li>
> +<li>powerpc64le-unknown-linux-gnu</li>
>  <li>sparc-sun-solaris2.11</li>
>  <li>x86_64-pc-linux-gnu</li>
>  </ul>
> diff --git a/htdocs/gcc-9/criteria.html b/htdocs/gcc-9/criteria.html
> index d434646c..f75bf990 100644
> --- a/htdocs/gcc-9/criteria.html
> +++ b/htdocs/gcc-9/criteria.html
> @@ -111,6 +111,7 @@ application testing.</p>
>  <li>i686-pc-linux-gnu</li>
>  <li>mipsisa64-elf</li>
>  <li>powerpc64-unknown-linux-gnu</li>
> +<li>powerpc64le-unknown-linux-gnu</li>
>  <li>sparc-sun-solaris2.11</li>
>  <li>x86_64-pc-linux-gnu</li>
>  </ul>

Ping?

Thanks,
Florian


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform
  2020-07-13 12:06 [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform Florian Weimer
  2020-08-03  6:03 ` Florian Weimer
@ 2020-08-03 16:56 ` David Edelsohn
  1 sibling, 0 replies; 3+ messages in thread
From: David Edelsohn @ 2020-08-03 16:56 UTC (permalink / raw)
  To: Florian Weimer; +Cc: GCC Patches, Matthias Klose, Bill Schmidt

On Mon, Jul 13, 2020 at 8:06 AM Florian Weimer <fweimer@redhat.com> wrote:
>
> The intent was that this was implied by powerpc64-unknown-linux-gnu,
> but this not very obvious because of the ELFv1 vs ELFv2 ABI
> differences.

It's okay to _add_ PPC64LE without removing PPC64.  This is okay.

I'm not certain why it's useful to retroactively add the criterion to
GCC9 and GCC10, but whatever.

Thanks, David

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-03 16:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-13 12:06 [PATCH wwwdocs] Explicitly list powerpc64le-unknown-linux-gnu as a primary platform Florian Weimer
2020-08-03  6:03 ` Florian Weimer
2020-08-03 16:56 ` David Edelsohn

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 read-only IMAP folder(s) and NNTP newsgroup(s).