From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 96F813858D32; Sun, 12 Feb 2023 15:14:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 96F813858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1676214841; bh=MmiInYsFgm2w9qSvURMXvDypLUWQNnM1iyQ5YOrUQQo=; h=From:To:Subject:Date:From; b=uzmfiHsDJSTbfyvfw2ZmyJYhCkiEhKvQeIq3fk4v1qqQ1ihdvjP33RrKB3jejbhVz lBHsP+UHpVYYe9Y2FTQ4fdyaqjynoBzsauhdpWVN/snwdXsLNTEG7VzG7l9k6UAWn4 +vcL9f611iP8jx0UpI7Yvo/BJN1yMa5Onq0BvVrI= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] hurd: Set up the basic tree for x86_64-gnu X-Act-Checkin: glibc X-Git-Author: Sergey Bugaev X-Git-Refname: refs/heads/master X-Git-Oldrev: 4fedebc9110809b5965e42f659d3477f4c89def8 X-Git-Newrev: be6d002ca277ffc90058d382396150cb0e785b9c Message-Id: <20230212151401.96F813858D32@sourceware.org> Date: Sun, 12 Feb 2023 15:14:01 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=be6d002ca277ffc90058d382396150cb0e785b9c commit be6d002ca277ffc90058d382396150cb0e785b9c Author: Sergey Bugaev Date: Sun Feb 12 14:10:41 2023 +0300 hurd: Set up the basic tree for x86_64-gnu And move pt-setup.c to the generic x86 tree. Signed-off-by: Sergey Bugaev Message-Id: <20230212111044.610942-11-bugaevc@gmail.com> Diff: --- sysdeps/mach/hurd/Implies | 1 + sysdeps/mach/hurd/i386/htl/Implies | 1 + sysdeps/mach/hurd/{i386 => x86}/htl/pt-setup.c | 4 ++-- sysdeps/mach/hurd/x86_64/Implies | 2 ++ sysdeps/mach/hurd/x86_64/htl/Implies | 3 +++ sysdeps/mach/x86_64/Implies | 1 + 6 files changed, 10 insertions(+), 2 deletions(-) diff --git a/sysdeps/mach/hurd/Implies b/sysdeps/mach/hurd/Implies index d2d5234c1f..e19dd1fd05 100644 --- a/sysdeps/mach/hurd/Implies +++ b/sysdeps/mach/hurd/Implies @@ -3,3 +3,4 @@ gnu # The Hurd provides a rough superset of the functionality of 4.4 BSD. unix/bsd +mach/hurd/htl diff --git a/sysdeps/mach/hurd/i386/htl/Implies b/sysdeps/mach/hurd/i386/htl/Implies index 7a0f99d772..fe3bd983b8 100644 --- a/sysdeps/mach/hurd/i386/htl/Implies +++ b/sysdeps/mach/hurd/i386/htl/Implies @@ -1,2 +1,3 @@ mach/hurd/htl +mach/hurd/x86/htl i386/htl diff --git a/sysdeps/mach/hurd/i386/htl/pt-setup.c b/sysdeps/mach/hurd/x86/htl/pt-setup.c similarity index 97% rename from sysdeps/mach/hurd/i386/htl/pt-setup.c rename to sysdeps/mach/hurd/x86/htl/pt-setup.c index 94caed82b5..3abd92b27e 100644 --- a/sysdeps/mach/hurd/i386/htl/pt-setup.c +++ b/sysdeps/mach/hurd/x86/htl/pt-setup.c @@ -1,4 +1,4 @@ -/* Setup thread stack. Hurd/i386 version. +/* Setup thread stack. Hurd/x86 version. Copyright (C) 2000-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -22,7 +22,7 @@ #include -/* The stack layout used on the i386 is: +/* The stack layout used on the x86 is: ----------------- | ARG | diff --git a/sysdeps/mach/hurd/x86_64/Implies b/sysdeps/mach/hurd/x86_64/Implies new file mode 100644 index 0000000000..6b5e6f47f7 --- /dev/null +++ b/sysdeps/mach/hurd/x86_64/Implies @@ -0,0 +1,2 @@ +mach/hurd/x86 +mach/hurd/x86_64/htl diff --git a/sysdeps/mach/hurd/x86_64/htl/Implies b/sysdeps/mach/hurd/x86_64/htl/Implies new file mode 100644 index 0000000000..1ae8f16ec7 --- /dev/null +++ b/sysdeps/mach/hurd/x86_64/htl/Implies @@ -0,0 +1,3 @@ +mach/hurd/htl +mach/hurd/x86/htl +x86_64/htl diff --git a/sysdeps/mach/x86_64/Implies b/sysdeps/mach/x86_64/Implies new file mode 100644 index 0000000000..da8291f4c8 --- /dev/null +++ b/sysdeps/mach/x86_64/Implies @@ -0,0 +1 @@ +mach/x86