public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [hurd,commited] hurd: rule out some mach headers when generating errno.h
@ 2023-05-17 16:59 Samuel Thibault
  0 siblings, 0 replies; 2+ messages in thread
From: Samuel Thibault @ 2023-05-17 16:59 UTC (permalink / raw)
  To: libc-alpha; +Cc: Samuel Thibault, commit-hurd

While mach/kern_return.h happens to pull mach/machine/kern_return.h,
mach/machine/boolean.h, and mach/machine/vm_types.h (and realpath-ing them
exposes the machine-specific machine symlink content), those headers do not
actually define anything machine-specific for the content of errno.h.

So we can just rule out these machine-specific from the dependency
comment.
---
 sysdeps/mach/hurd/bits/errno.h | 3 ---
 sysdeps/mach/hurd/errnos.awk   | 4 ++++
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sysdeps/mach/hurd/bits/errno.h b/sysdeps/mach/hurd/bits/errno.h
index 069865189f..a0794f96aa 100644
--- a/sysdeps/mach/hurd/bits/errno.h
+++ b/sysdeps/mach/hurd/bits/errno.h
@@ -4,11 +4,8 @@
      libc-symbols.h
      mach/message.h
      mach/kern_return.h
-     mach/i386/kern_return.h
      mach/port.h
      mach/boolean.h
-     mach/i386/boolean.h
-     mach/i386/vm_types.h
      stdint.h
      ../stdlib/stdint.h
      ../bits/libc-header-start.h
diff --git a/sysdeps/mach/hurd/errnos.awk b/sysdeps/mach/hurd/errnos.awk
index 22c9ceef65..b9f717c1af 100644
--- a/sysdeps/mach/hurd/errnos.awk
+++ b/sysdeps/mach/hurd/errnos.awk
@@ -25,6 +25,10 @@ BEGIN {
 	arg = ARGV[i];
 	sub(/.*(manual|include)\//, "", arg);
 	if (arg ~ /.*errnos.d/) continue;
+	# Those not not actually define anything for errno.h
+	if (arg ~ /mach\/.*\/kern_return.h/) continue;
+	if (arg ~ /mach\/.*\/boolean.h/) continue;
+	if (arg ~ /mach\/.*\/vm_types.h/) continue;
 	print "     " arg;
       }
     print "   Do not edit this file; edit errnos.awk and regenerate it.  */";
-- 
2.39.2


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

* [hurd,commited] hurd: rule out some mach headers when generating errno.h
@ 2023-05-10 23:54 Samuel Thibault
  0 siblings, 0 replies; 2+ messages in thread
From: Samuel Thibault @ 2023-05-10 23:54 UTC (permalink / raw)
  To: libc-alpha; +Cc: Samuel Thibault, commit-hurd

While mach/kern_return.h happens to pull mach/machine/kern_return.h,
mach/machine/boolean.h, and mach/machine/vm_types.h (and realpath-ing them
exposes the machine-specific machine symlink content), those headers do not
actually define anything machine-specific for the content of errno.h.

So we can just rule out these machine-specific from the dependency
comment.
---
 sysdeps/mach/hurd/bits/errno.h | 3 ---
 sysdeps/mach/hurd/errnos.awk   | 4 ++++
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sysdeps/mach/hurd/bits/errno.h b/sysdeps/mach/hurd/bits/errno.h
index 069865189f..a0794f96aa 100644
--- a/sysdeps/mach/hurd/bits/errno.h
+++ b/sysdeps/mach/hurd/bits/errno.h
@@ -4,11 +4,8 @@
      libc-symbols.h
      mach/message.h
      mach/kern_return.h
-     mach/i386/kern_return.h
      mach/port.h
      mach/boolean.h
-     mach/i386/boolean.h
-     mach/i386/vm_types.h
      stdint.h
      ../stdlib/stdint.h
      ../bits/libc-header-start.h
diff --git a/sysdeps/mach/hurd/errnos.awk b/sysdeps/mach/hurd/errnos.awk
index 22c9ceef65..b9f717c1af 100644
--- a/sysdeps/mach/hurd/errnos.awk
+++ b/sysdeps/mach/hurd/errnos.awk
@@ -25,6 +25,10 @@ BEGIN {
 	arg = ARGV[i];
 	sub(/.*(manual|include)\//, "", arg);
 	if (arg ~ /.*errnos.d/) continue;
+	# Those not not actually define anything for errno.h
+	if (arg ~ /mach\/.*\/kern_return.h/) continue;
+	if (arg ~ /mach\/.*\/boolean.h/) continue;
+	if (arg ~ /mach\/.*\/vm_types.h/) continue;
 	print "     " arg;
       }
     print "   Do not edit this file; edit errnos.awk and regenerate it.  */";
-- 
2.39.2


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

end of thread, other threads:[~2023-05-17 16:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-17 16:59 [hurd,commited] hurd: rule out some mach headers when generating errno.h Samuel Thibault
  -- strict thread matches above, loose matches on Subject: below --
2023-05-10 23:54 Samuel Thibault

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