public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] elf: ELF toolchain --without-{headers,newlib} should provide stdint.h
@ 2022-10-03 20:35 Arsen Arsenović
  2022-10-10 18:05 ` Ping: " Arsen Arsenović
  0 siblings, 1 reply; 4+ messages in thread
From: Arsen Arsenović @ 2022-10-03 20:35 UTC (permalink / raw)
  To: gcc-patches; +Cc: Arsen Arsenović

stdint.h is considered a freestanding headers by C, and a valid stdint.h
is required for certain parts of libstdc++' configuration, so we should
simply provide one when we have no other way (i.e. newlib or
user-specified sysroot) of getting one.

gcc/ChangeLog:

	* config.gcc: --target=*-elf --without-{newlib,headers} should
	provide stdint.h.
---
Evening,

Currently, freestanding *-elf toolchains without newlib will always produce
invalid stdint.h files, tripping up libstdc++ configure scripts (see PR104605).
This patch should make no-newlib no-headers always provide stdint.h.

Thanks.

 gcc/config.gcc | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gcc/config.gcc b/gcc/config.gcc
index 555f257c2e7..6633910d2b7 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -1079,6 +1079,11 @@ case ${target} in
   # Assume that newlib is being used and so __cxa_atexit is provided.
   default_use_cxa_atexit=yes
   use_gcc_stdint=wrap
+
+  case "${with_newlib}-${with_headers}" in
+  no-no) use_gcc_stdint=provide ;;
+  *) ;;
+  esac
   ;;
 esac
 
-- 
2.37.3


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

* Ping: [PATCH] elf: ELF toolchain --without-{headers,newlib} should provide stdint.h
  2022-10-03 20:35 [PATCH] elf: ELF toolchain --without-{headers,newlib} should provide stdint.h Arsen Arsenović
@ 2022-10-10 18:05 ` Arsen Arsenović
  2022-10-11  6:47   ` Ping: [PATCH] elf: ELF toolchain --without-{headers, newlib} " Richard Biener
  0 siblings, 1 reply; 4+ messages in thread
From: Arsen Arsenović @ 2022-10-10 18:05 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 228 bytes --]

Evening,

Ping on this patch, it should fix some configuration issues we get on 
ELF targets (especially in libstdc++).

https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602751.html

Thanks,
-- 
Arsen Arsenović

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 358 bytes --]

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

* Re: Ping: [PATCH] elf: ELF toolchain --without-{headers, newlib} should provide stdint.h
  2022-10-10 18:05 ` Ping: " Arsen Arsenović
@ 2022-10-11  6:47   ` Richard Biener
  2022-10-14 19:33     ` Arsen Arsenović
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Biener @ 2022-10-11  6:47 UTC (permalink / raw)
  To: Arsen Arsenović; +Cc: gcc-patches

On Mon, Oct 10, 2022 at 8:06 PM Arsen Arsenović via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> Evening,
>
> Ping on this patch, it should fix some configuration issues we get on
> ELF targets (especially in libstdc++).
>
> https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602751.html

OK.

Thanks,
Richard.

> Thanks,
> --
> Arsen Arsenović

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

* Re: Ping: [PATCH] elf: ELF toolchain --without-{headers, newlib} should provide stdint.h
  2022-10-11  6:47   ` Ping: [PATCH] elf: ELF toolchain --without-{headers, newlib} " Richard Biener
@ 2022-10-14 19:33     ` Arsen Arsenović
  0 siblings, 0 replies; 4+ messages in thread
From: Arsen Arsenović @ 2022-10-14 19:33 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 215 bytes --]

On Tuesday, 11 October 2022 08:47:32 CEST Richard Biener wrote:
> OK.

Thanks for the review.  I don't have push rights currently, so could you 
push this for me?

Have a good evening,
-- 
Arsen Arsenović

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 358 bytes --]

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

end of thread, other threads:[~2022-10-14 19:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-03 20:35 [PATCH] elf: ELF toolchain --without-{headers,newlib} should provide stdint.h Arsen Arsenović
2022-10-10 18:05 ` Ping: " Arsen Arsenović
2022-10-11  6:47   ` Ping: [PATCH] elf: ELF toolchain --without-{headers, newlib} " Richard Biener
2022-10-14 19:33     ` Arsen Arsenović

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).