public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/5] binutils: Update to 2.43.1
@ 2025-02-07 12:25 Michael Tremer
  2025-02-07 12:25 ` [PATCH 2/5] qemu: Fix build against glibc >= 2.41 Michael Tremer
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Michael Tremer @ 2025-02-07 12:25 UTC (permalink / raw)
  To: development

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

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/common/aarch64/binutils | 4 ++--
 config/rootfiles/common/x86_64/binutils  | 4 ++--
 lfs/binutils                             | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/config/rootfiles/common/aarch64/binutils b/config/rootfiles/common/aarch64/binutils
index 7257fb3a5..6e73f2564 100644
--- a/config/rootfiles/common/aarch64/binutils
+++ b/config/rootfiles/common/aarch64/binutils
@@ -421,7 +421,7 @@ usr/lib/bfd-plugins/libdep.so
 #usr/lib/ldscripts/armelfb_linux_eabi.xwe
 #usr/lib/ldscripts/armelfb_linux_eabi.xwer
 #usr/lib/ldscripts/stamp
-usr/lib/libbfd-2.43.so
+usr/lib/libbfd-2.43.1.so
 #usr/lib/libbfd.a
 #usr/lib/libbfd.la
 #usr/lib/libbfd.so
@@ -440,7 +440,7 @@ usr/lib/libctf.so.0.0.0
 #usr/lib/libgprofng.so
 usr/lib/libgprofng.so.0
 usr/lib/libgprofng.so.0.0.0
-usr/lib/libopcodes-2.43.so
+usr/lib/libopcodes-2.43.1.so
 #usr/lib/libopcodes.a
 #usr/lib/libopcodes.la
 #usr/lib/libopcodes.so
diff --git a/config/rootfiles/common/x86_64/binutils b/config/rootfiles/common/x86_64/binutils
index 52d309a52..6f11f20b0 100644
--- a/config/rootfiles/common/x86_64/binutils
+++ b/config/rootfiles/common/x86_64/binutils
@@ -173,7 +173,7 @@ usr/bin/strings
 #usr/lib/ldscripts/elf_x86_64.xwe
 #usr/lib/ldscripts/elf_x86_64.xwer
 #usr/lib/ldscripts/stamp
-usr/lib/libbfd-2.43.so
+usr/lib/libbfd-2.43.1.so
 #usr/lib/libbfd.a
 #usr/lib/libbfd.la
 #usr/lib/libbfd.so
@@ -192,7 +192,7 @@ usr/lib/libctf.so.0.0.0
 #usr/lib/libgprofng.so
 usr/lib/libgprofng.so.0
 usr/lib/libgprofng.so.0.0.0
-usr/lib/libopcodes-2.43.so
+usr/lib/libopcodes-2.43.1.so
 #usr/lib/libopcodes.a
 #usr/lib/libopcodes.la
 #usr/lib/libopcodes.so
diff --git a/lfs/binutils b/lfs/binutils
index bf6025708..9b42ef2ae 100644
--- a/lfs/binutils
+++ b/lfs/binutils
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.43
+VER        = 2.43.1
 
 THISAPP    = binutils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -96,7 +96,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 28b0a04a28273b76eab2d00e00160be889f155f77f5a9d8759ef8dce505c97e97641bf7ec70b92b731b520570a02b06e04e8215b068fcb1bb2573e9ef24732d9
+$(DL_FILE)_BLAKE2 = c4cd765cea326cd00b5cfe306e2937d820603b42f07a714ceb1349d36ddba0d45c3e125599dadf290d97954035c381781067155600ed87066e494cb9c4b34b45
 
 install : $(TARGET)
 
-- 
2.39.5


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

* [PATCH 2/5] qemu: Fix build against glibc >= 2.41
  2025-02-07 12:25 [PATCH 1/5] binutils: Update to 2.43.1 Michael Tremer
@ 2025-02-07 12:25 ` Michael Tremer
  2025-02-07 12:25 ` [PATCH 3/5] glibc: Update to 2.41 Michael Tremer
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2025-02-07 12:25 UTC (permalink / raw)
  To: development

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

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 lfs/qemu                                |   1 +
 src/patches/qemu-9.2.0-sched-attr.patch | 192 ++++++++++++++++++++++++
 2 files changed, 193 insertions(+)
 create mode 100644 src/patches/qemu-9.2.0-sched-attr.patch

diff --git a/lfs/qemu b/lfs/qemu
index cf0d3aa0c..5358c566d 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -90,6 +90,7 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/qemu-9.2.0-sched-attr.patch
 	cd $(DIR_APP) && ./configure \
 		--prefix=/usr \
 		--sysconfdir=/etc \
diff --git a/src/patches/qemu-9.2.0-sched-attr.patch b/src/patches/qemu-9.2.0-sched-attr.patch
new file mode 100644
index 000000000..15adf3ce1
--- /dev/null
+++ b/src/patches/qemu-9.2.0-sched-attr.patch
@@ -0,0 +1,192 @@
+From qemu-devel-bounces+berrange=redhat.com(a)nongnu.org Fri Oct 11 20:32:42 2024
+Delivered-To: berrange(a)gapps.redhat.com
+Received: by 2002:a05:612c:fcb:b0:49e:3967:5c with SMTP id kg11csp620284vqb;
+        Fri, 11 Oct 2024 12:32:43 -0700 (PDT)
+X-Forwarded-Encrypted: i=2; AJvYcCXPcgyQ0/+OIS7vrT6LX5S6B3Hgz9IoezpGzlHzuQ86lhsSq6u4TrVfGwET6WFesjl4msgGP886/Q==@gapps.redhat.com
+X-Google-Smtp-Source: AGHT+IGI1MzgaHjMk041SIq3SzZGJRAF05keA8usOtLVfsqz+UnG8gS/7JH2MnqELZrotA/GJ+FI
+X-Received: by 2002:a05:6870:530c:b0:277:e35a:d2d5 with SMTP id 586e51a60fabf-2886e0d7223mr2593115fac.47.1728675162879;
+        Fri, 11 Oct 2024 12:32:42 -0700 (PDT)
+ARC-Seal: i=1; a=rsa-sha256; t=1728675162; cv=none;
+        d=google.com; s=arc-20240605;
+        b=alETPlokQysotchMz04b4QkeW4n7IaCvDHuYMZh698k8mF5RJMclj7AfzOWMyGXURw
+         kFfdMDxoHBlzWY9bTAGsH6EBkFDcJ9RyMs2Oy/exl09b3Zbt/LaW/PgqJZWi7DqZe7FD
+         Zo3bqW5OSwWxU/vpy6n8B4EV22uFeRNhdTlzj0nbU4h+YpUcUzXR++ssowqa367TMQ5s
+         THtVdddGT62AlbkeybdC/gTVxTt0RktEBMKTh+MzuZJ1rcgMb+pbG6h/XF5Iub2C+szk
+         EkyaW96aO1YTzalK4HCCL7cuCauVGvVShSjUfPFMqXRxvzVfFqn02zZh6C4AXb/a/gIT
+         YiXA==
+ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
+        h=content-transfer-encoding:sender:errors-to:list-subscribe:list-help
+         :list-post:list-archive:list-unsubscribe:list-id:precedence
+         :mime-version:message-id:date:subject:cc:to:from:delivered-to;
+        bh=PO9IbOEY2YqKRkyInUx1mFCEKdNyF6F1Ade1P8ET5cM=;
+        fh=xgCffyEVvm6hjKwQ8pT/suARWWrEEvCTAvMVKpBgaZg=;
+        b=Q4fnfvzilypAHQRG6QbhiDXJWTDiP8dnRA4CB3fnXjC3sGRa+4+abHQkdOy6pMW4T9
+         HhCdtLquJqRIBSQNVEVZMN5bFDX+gIaEA6pmEbd8Sdi47dl2+VS7vP9dQWf/FOtrkGqg
+         D6K6DlbOdtzmdoTtWcI9Zm1eg6/98cVH2/hqzO/Ig1eI47UvIJpZtm3CMa3y5BgoJhmX
+         v1pxjLmbVwmOdo8YkXgT3bH5iAPwXjn8FU7q4Z+CX3XChIQksWGvkB+zR/d7xqsEEdTv
+         x85zJC/K4M9DAnuyJA2rIcrt/QUDHpdAPfcV2gDWr4IBhF27Ul9j6vjXzKNHaGjJxXbF
+         hFsw==;
+        dara=google.com
+ARC-Authentication-Results: i=1; mx.google.com;
+       spf=pass (google.com: domain of qemu-devel-bounces+berrange=redhat.com(a)nongnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom="qemu-devel-bounces+berrange=redhat.com(a)nongnu.org"
+Return-Path: <qemu-devel-bounces+berrange=redhat.com(a)nongnu.org>
+Received: from us-smtp-inbound-delivery-1.mimecast.com (us-smtp-inbound-delivery-1.mimecast.com. [205.139.110.120])
+        by mx.google.com with ESMTPS id af79cd13be357-7b114998ee3si449329885a.281.2024.10.11.12.32.42
+        for <berrange(a)gapps.redhat.com>
+        (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
+        Fri, 11 Oct 2024 12:32:42 -0700 (PDT)
+Received-SPF: pass (google.com: domain of qemu-devel-bounces+berrange=redhat.com(a)nongnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17;
+Authentication-Results: mx.google.com;
+       spf=pass (google.com: domain of qemu-devel-bounces+berrange=redhat.com(a)nongnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom="qemu-devel-bounces+berrange=redhat.com(a)nongnu.org"
+Received: from mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com
+ (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by
+ relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3,
+ cipher=TLS_AES_256_GCM_SHA384) id us-mta-14-mwcDIPw2Ma-2fc8EyJ2Anw-1; Fri,
+ 11 Oct 2024 15:32:41 -0400
+X-MC-Unique: mwcDIPw2Ma-2fc8EyJ2Anw-1
+Received: from mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.15])
+	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
+	 key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256)
+	(No client certificate requested)
+	by mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id A96C819560AE
+	for <berrange(a)gapps.redhat.com>; Fri, 11 Oct 2024 19:32:40 +0000 (UTC)
+Received: by mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com (Postfix)
+	id A3F151956089; Fri, 11 Oct 2024 19:32:40 +0000 (UTC)
+Delivered-To: berrange(a)redhat.com
+Received: from mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.23])
+	by mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 9EAE41955F42
+	for <berrange(a)redhat.com>; Fri, 11 Oct 2024 19:32:40 +0000 (UTC)
+Received: from us-smtp-inbound-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120])
+	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
+	 key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256)
+	(No client certificate requested)
+	by mx-prod-mc-04.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 4A35819560B5
+	for <berrange(a)redhat.com>; Fri, 11 Oct 2024 19:32:40 +0000 (UTC)
+Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by
+ relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2,
+ cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id
+ us-mta-656-VIioc_tgPx6dfe3wuTFP4A-1; Fri, 11 Oct 2024 15:32:38 -0400
+X-MC-Unique: VIioc_tgPx6dfe3wuTFP4A-1
+Received: from localhost ([::1] helo=lists1p.gnu.org)
+	by lists.gnu.org with esmtp (Exim 4.90_1)
+	(envelope-from <qemu-devel-bounces(a)nongnu.org>)
+	id 1szLMh-00020r-5j; Fri, 11 Oct 2024 15:31:55 -0400
+Received: from eggs.gnu.org ([2001:470:142:3::10])
+ by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
+ (Exim 4.90_1) (envelope-from <raj.khem(a)gmail.com>)
+ id 1szLMb-00020P-1q
+ for qemu-devel(a)nongnu.org; Fri, 11 Oct 2024 15:31:51 -0400
+Received: from mail-pl1-x635.google.com ([2607:f8b0:4864:20::635])
+ by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)
+ (Exim 4.90_1) (envelope-from <raj.khem(a)gmail.com>)
+ id 1szLMW-0003EY-RE
+ for qemu-devel(a)nongnu.org; Fri, 11 Oct 2024 15:31:46 -0400
+Received: by mail-pl1-x635.google.com with SMTP id
+ d9443c01a7336-20bb610be6aso25161715ad.1
+ for <qemu-devel(a)nongnu.org>; Fri, 11 Oct 2024 12:31:44 -0700 (PDT)
+X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+ d=1e100.net; s=20230601; t=1728675103; x=1729279903;
+ h=content-transfer-encoding:mime-version:message-id:date:subject:cc
+ :to:from:x-gm-message-state:from:to:cc:subject:date:message-id
+ :reply-to;
+ bh=PO9IbOEY2YqKRkyInUx1mFCEKdNyF6F1Ade1P8ET5cM=;
+ b=K3X31NNuvHdknW5P8UcnhDjhiG8YvVt80acZ9o0cp4OYATGyivVrgqlV16YtlE7nbP
+ c2GxVasHb4XHOFgQ/OS9twOzcL7BvXjTYuSlqOjY9QQ9Ng38MAMFgLpleBdUdi0JHrfh
+ vH2pyWqiWlGfPiDmnJWawogp9bgGCHsqyjPUtcw1LCUqNNx0sfyV98mwYq27/2m4POny
+ BQ0yFM/O7SF2EkZuaQwCJWPmH3fQatSgwEAq5u1SGy/Tn9a9GB4Iyolqgm4mMJBiful/
+ xoI0a2JEsYatNItIvqoWJ5uBgwrOZHldhxPZGCUP9cL5ecB1flcnPXHxLR4p0/kiQzuI
+ LzCw==
+X-Gm-Message-State: AOJu0YxWyAwGwQqYK1sZdfMljusz9BkH4fhylN1UvHETC7GDQDWtfFQS
+ zz40Z5A7yrfIoS4SkMLM2xTSe57qyfKfFPHRVJe68kPHnsvbdEUpZAecLqJ/
+X-Received: by 2002:a17:902:d2c5:b0:20c:a644:817f with SMTP id
+ d9443c01a7336-20ca6448261mr49539675ad.7.1728675103070; 
+ Fri, 11 Oct 2024 12:31:43 -0700 (PDT)
+Received: from apollo.hsd1.ca.comcast.net ([2601:646:9d80:4380::f083])
+ by smtp.gmail.com with ESMTPSA id
+ d9443c01a7336-20c8bc13551sm26871055ad.88.2024.10.11.12.31.42
+ (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
+ Fri, 11 Oct 2024 12:31:42 -0700 (PDT)
+From: Khem Raj <raj.khem(a)gmail.com>
+To: qemu-devel(a)nongnu.org
+Cc: Khem Raj <raj.khem(a)gmail.com>, Laurent Vivier <laurent(a)vivier.eu>,
+ Paolo Bonzini <pbonzini(a)redhat.com>
+Subject: [PATCH v2] sched_attr: Do not define for glibc >= 2.41
+Date: Fri, 11 Oct 2024 12:31:40 -0700
+Message-ID: <20241011193140.1047648-1-raj.khem(a)gmail.com>
+MIME-Version: 1.0
+X-Spam_score_int: -20
+X-Spam_score: -2.1
+X-Spam_bar: --
+X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,
+ DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
+ RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
+ SPF_PASS=-0.001 autolearn=ham autolearn_force=no
+X-Spam_action: no action
+X-BeenThere: qemu-devel(a)nongnu.org
+X-Mailman-Version: 2.1.29
+Precedence: list
+List-Id: <qemu-devel.nongnu.org>
+List-Unsubscribe: <https://lists.nongnu.org/mailman/options/qemu-devel>,
+ <mailto:qemu-devel-request(a)nongnu.org?subject=unsubscribe>
+List-Archive: <https://lists.nongnu.org/archive/html/qemu-devel>
+List-Post: <mailto:qemu-devel(a)nongnu.org>
+List-Help: <mailto:qemu-devel-request(a)nongnu.org?subject=help>
+List-Subscribe: <https://lists.nongnu.org/mailman/listinfo/qemu-devel>,
+ <mailto:qemu-devel-request(a)nongnu.org?subject=subscribe>
+Errors-To: qemu-devel-bounces+berrange=redhat.com(a)nongnu.org
+Sender: qemu-devel-bounces+berrange=redhat.com(a)nongnu.org
+X-Mimecast-Impersonation-Protect: Policy=CLT - Impersonation Protection Definition;Similar Internal Domain=false;Similar Monitored External Domain=false;Custom External Domain=false;Mimecast External Domain=false;Newly Observed Domain=false;Internal User Name=false;Custom Display Name List=false;Reply-to Address Mismatch=false;Targeted Threat Dictionary=false;Mimecast Threat Dictionary=false;Custom Threat Dictionary=false
+X-Mimecast-Bulk-Signature: yes
+X-Mimecast-Spam-Signature: bulk
+X-Scanned-By: MIMEDefang 3.0 on 10.30.177.15
+X-Mimecast-Spam-Score: 0
+X-Mimecast-Originator: gmail.com
+Content-Transfer-Encoding: 8bit
+Content-Type: text/plain; charset="US-ASCII"; x-default=true
+Status: RO
+Content-Length: 1578
+Lines: 42
+
+glibc 2.41+ has added [1] definitions for sched_setattr and sched_getattr functions
+and struct sched_attr. Therefore, it needs to be checked for here as well before
+defining sched_attr
+
+Define sched_attr conditionally on SCHED_ATTR_SIZE_VER0
+
+Fixes builds with glibc/trunk
+
+[1] https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=21571ca0d70302909cf72707b2a7736cf12190a0;hp=298bc488fdc047da37482f4003023cb9adef78f8
+
+Signed-off-by: Khem Raj <raj.khem(a)gmail.com>
+Cc: Laurent Vivier <laurent(a)vivier.eu>
+Cc: Paolo Bonzini <pbonzini(a)redhat.com>
+---
+v2: Use SCHED_ATTR_SIZE_VER0 instead of glibc version check
+
+ linux-user/syscall.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/linux-user/syscall.c b/linux-user/syscall.c
+index 1354e75694..caecbb765d 100644
+--- a/linux-user/syscall.c
++++ b/linux-user/syscall.c
+@@ -359,7 +359,8 @@ _syscall3(int, sys_sched_getaffinity, pid_t, pid, unsigned int, len,
+ #define __NR_sys_sched_setaffinity __NR_sched_setaffinity
+ _syscall3(int, sys_sched_setaffinity, pid_t, pid, unsigned int, len,
+           unsigned long *, user_mask_ptr);
+-/* sched_attr is not defined in glibc */
++/* sched_attr is not defined in glibc < 2.41 */
++#ifndef SCHED_ATTR_SIZE_VER0
+ struct sched_attr {
+     uint32_t size;
+     uint32_t sched_policy;
+@@ -372,6 +373,7 @@ struct sched_attr {
+     uint32_t sched_util_min;
+     uint32_t sched_util_max;
+ };
++#endif
+ #define __NR_sys_sched_getattr __NR_sched_getattr
+ _syscall4(int, sys_sched_getattr, pid_t, pid, struct sched_attr *, attr,
+           unsigned int, size, unsigned int, flags);
+
+
-- 
2.39.5


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

* [PATCH 3/5] glibc: Update to 2.41
  2025-02-07 12:25 [PATCH 1/5] binutils: Update to 2.43.1 Michael Tremer
  2025-02-07 12:25 ` [PATCH 2/5] qemu: Fix build against glibc >= 2.41 Michael Tremer
@ 2025-02-07 12:25 ` Michael Tremer
  2025-02-07 12:25 ` [PATCH 4/5] binutils: Update to 2.44 Michael Tremer
  2025-02-07 12:25 ` [PATCH 5/5] make.sh: Bump toolchain version Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2025-02-07 12:25 UTC (permalink / raw)
  To: development

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

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/common/aarch64/glibc |  5 +++--
 config/rootfiles/common/riscv64/glibc |  2 ++
 config/rootfiles/common/x86_64/glibc  |  4 +++-
 lfs/glibc                             | 10 ++++++----
 4 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/config/rootfiles/common/aarch64/glibc b/config/rootfiles/common/aarch64/glibc
index d91e55c79..a6d3f1ea9 100644
--- a/config/rootfiles/common/aarch64/glibc
+++ b/config/rootfiles/common/aarch64/glibc
@@ -109,6 +109,7 @@ usr/bin/locale
 #usr/include/bits/long-double.h
 #usr/include/bits/math-vector.h
 #usr/include/bits/mathcalls-helper-functions.h
+#usr/include/bits/mathcalls-macros.h
 #usr/include/bits/mathcalls-narrow.h
 #usr/include/bits/mathcalls.h
 #usr/include/bits/mathdef.h
@@ -124,7 +125,6 @@ usr/bin/locale
 #usr/include/bits/netdb.h
 #usr/include/bits/param.h
 #usr/include/bits/poll.h
-#usr/include/bits/platform/features.h
 #usr/include/bits/poll2.h
 #usr/include/bits/posix1_lim.h
 #usr/include/bits/posix2_lim.h
@@ -812,7 +812,7 @@ usr/lib/gconv
 #usr/lib/libc_nonshared.a
 #usr/lib/libdl.a
 #usr/lib/libg.a
-#usr/lib/libm-2.40.a
+#usr/lib/libm-2.41.a
 #usr/lib/libm.a
 #usr/lib/libm.so
 #usr/lib/libmcheck.a
@@ -8450,6 +8450,7 @@ usr/lib/locale
 #usr/share/info/libc.info-18
 #usr/share/info/libc.info-19
 #usr/share/info/libc.info-2
+#usr/share/info/libc.info-20
 #usr/share/info/libc.info-3
 #usr/share/info/libc.info-4
 #usr/share/info/libc.info-5
diff --git a/config/rootfiles/common/riscv64/glibc b/config/rootfiles/common/riscv64/glibc
index caab864d9..52a4ad657 100644
--- a/config/rootfiles/common/riscv64/glibc
+++ b/config/rootfiles/common/riscv64/glibc
@@ -108,6 +108,7 @@ usr/bin/locale
 #usr/include/bits/long-double.h
 #usr/include/bits/math-vector.h
 #usr/include/bits/mathcalls-helper-functions.h
+#usr/include/bits/mathcalls-macros.h
 #usr/include/bits/mathcalls-narrow.h
 #usr/include/bits/mathcalls.h
 #usr/include/bits/mathdef.h
@@ -8446,6 +8447,7 @@ usr/lib/locale
 #usr/share/info/libc.info-18
 #usr/share/info/libc.info-19
 #usr/share/info/libc.info-2
+#usr/share/info/libc.info-20
 #usr/share/info/libc.info-3
 #usr/share/info/libc.info-4
 #usr/share/info/libc.info-5
diff --git a/config/rootfiles/common/x86_64/glibc b/config/rootfiles/common/x86_64/glibc
index 9f97485dc..7d95ea661 100644
--- a/config/rootfiles/common/x86_64/glibc
+++ b/config/rootfiles/common/x86_64/glibc
@@ -109,6 +109,7 @@ usr/bin/locale
 #usr/include/bits/long-double.h
 #usr/include/bits/math-vector.h
 #usr/include/bits/mathcalls-helper-functions.h
+#usr/include/bits/mathcalls-macros.h
 #usr/include/bits/mathcalls-narrow.h
 #usr/include/bits/mathcalls.h
 #usr/include/bits/mathdef.h
@@ -820,7 +821,7 @@ usr/lib/gconv
 #usr/lib/libc_nonshared.a
 #usr/lib/libdl.a
 #usr/lib/libg.a
-#usr/lib/libm-2.40.a
+#usr/lib/libm-2.41.a
 #usr/lib/libm.a
 #usr/lib/libm.so
 #usr/lib/libmcheck.a
@@ -8458,6 +8459,7 @@ usr/lib/locale
 #usr/share/info/libc.info-18
 #usr/share/info/libc.info-19
 #usr/share/info/libc.info-2
+#usr/share/info/libc.info-20
 #usr/share/info/libc.info-3
 #usr/share/info/libc.info-4
 #usr/share/info/libc.info-5
diff --git a/lfs/glibc b/lfs/glibc
index 9ac5b1f08..136d1d5ed 100644
--- a/lfs/glibc
+++ b/lfs/glibc
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.40
+VER        = 2.41
 
 THISAPP    = glibc-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -82,7 +82,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 8593cab5b2549b77159b6866fbb40b917e491fd5bc0814f7f85b6529166d78d4583436450c479b86cdfe468304fc4d2a9ba8294230a55dbc4c15e89c3ab6c000
+$(DL_FILE)_BLAKE2 = 4da62f489ba7a95bb069c2cfea8cf78e4d37e3a5f7e1736239670ba1dca12b69aa77bd00ced078c27d91b1e622c58cbd70258161a9d18c5b3bcc95863b8d744d
 
 install : $(TARGET)
 
@@ -127,8 +127,10 @@ endif
 		CFLAGS="$(CFLAGS) -fno-asynchronous-unwind-tables" \
 		$(DIR_APP)/configure $(EXTRA_CONFIG)
 
-	cd $(DIR_SRC)/glibc-build && make PARALLELMFLAGS=$(MAKETUNING) \
-		CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)"
+	cd $(DIR_SRC)/glibc-build && make \
+		PARALLELMFLAGS=$(MAKETUNING) \
+		CFLAGS="$(CFLAGS) -Wp,-U_FORTIFY_SOURCE" \
+		CXXFLAGS="$(CXXFLAGS) -Wp,-U_FORTIFY_SOURCE"
 
 	cd $(DIR_APP) && sed '/test-installation/s@\$$(PERL)@echo not running@' -i Makefile
 
-- 
2.39.5


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

* [PATCH 4/5] binutils: Update to 2.44
  2025-02-07 12:25 [PATCH 1/5] binutils: Update to 2.43.1 Michael Tremer
  2025-02-07 12:25 ` [PATCH 2/5] qemu: Fix build against glibc >= 2.41 Michael Tremer
  2025-02-07 12:25 ` [PATCH 3/5] glibc: Update to 2.41 Michael Tremer
@ 2025-02-07 12:25 ` Michael Tremer
  2025-02-07 12:25 ` [PATCH 5/5] make.sh: Bump toolchain version Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2025-02-07 12:25 UTC (permalink / raw)
  To: development

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

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/common/aarch64/binutils | 22 +++++++++++++++-------
 config/rootfiles/common/riscv64/binutils | 22 +++++++++++++++-------
 config/rootfiles/common/x86_64/binutils  | 22 +++++++++++++++-------
 lfs/binutils                             |  4 ++--
 4 files changed, 47 insertions(+), 23 deletions(-)

diff --git a/config/rootfiles/common/aarch64/binutils b/config/rootfiles/common/aarch64/binutils
index 6e73f2564..f4d8cb09c 100644
--- a/config/rootfiles/common/aarch64/binutils
+++ b/config/rootfiles/common/aarch64/binutils
@@ -10,6 +10,11 @@
 #usr/bin/gp-display-text
 #usr/bin/gprof
 #usr/bin/gprofng
+#usr/bin/gprofng-archive
+#usr/bin/gprofng-collect-app
+#usr/bin/gprofng-display-html
+#usr/bin/gprofng-display-src
+#usr/bin/gprofng-display-text
 #usr/bin/ld
 #usr/bin/ld.bfd
 #usr/bin/nm
@@ -421,7 +426,7 @@ usr/lib/bfd-plugins/libdep.so
 #usr/lib/ldscripts/armelfb_linux_eabi.xwe
 #usr/lib/ldscripts/armelfb_linux_eabi.xwer
 #usr/lib/ldscripts/stamp
-usr/lib/libbfd-2.43.1.so
+usr/lib/libbfd-2.44.so
 #usr/lib/libbfd.a
 #usr/lib/libbfd.la
 #usr/lib/libbfd.so
@@ -440,7 +445,7 @@ usr/lib/libctf.so.0.0.0
 #usr/lib/libgprofng.so
 usr/lib/libgprofng.so.0
 usr/lib/libgprofng.so.0.0.0
-usr/lib/libopcodes-2.43.1.so
+usr/lib/libopcodes-2.44.so
 #usr/lib/libopcodes.a
 #usr/lib/libopcodes.la
 #usr/lib/libopcodes.so
@@ -449,6 +454,8 @@ usr/lib/libopcodes-2.43.1.so
 #usr/lib/libsframe.so
 usr/lib/libsframe.so.1
 usr/lib/libsframe.so.1.0.0
+#usr/share/doc/gprofng
+#usr/share/doc/gprofng/examples.tar.gz
 #usr/share/info/as.info
 #usr/share/info/bfd.info
 #usr/share/info/binutils.info
@@ -517,6 +524,7 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/locale/ka/LC_MESSAGES/ld.mo
 #usr/share/locale/ms
 #usr/share/locale/ms/LC_MESSAGES
+#usr/share/locale/ms/LC_MESSAGES/bfd.mo
 #usr/share/locale/ms/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/opcodes.mo
@@ -582,12 +590,12 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/man/man1/c++filt.1
 #usr/share/man/man1/dlltool.1
 #usr/share/man/man1/elfedit.1
-#usr/share/man/man1/gp-archive.1
-#usr/share/man/man1/gp-collect-app.1
-#usr/share/man/man1/gp-display-html.1
-#usr/share/man/man1/gp-display-src.1
-#usr/share/man/man1/gp-display-text.1
 #usr/share/man/man1/gprof.1
+#usr/share/man/man1/gprofng-archive.1
+#usr/share/man/man1/gprofng-collect-app.1
+#usr/share/man/man1/gprofng-display-html.1
+#usr/share/man/man1/gprofng-display-src.1
+#usr/share/man/man1/gprofng-display-text.1
 #usr/share/man/man1/gprofng.1
 #usr/share/man/man1/ld.1
 #usr/share/man/man1/nm.1
diff --git a/config/rootfiles/common/riscv64/binutils b/config/rootfiles/common/riscv64/binutils
index 141af7cde..5153af16f 100644
--- a/config/rootfiles/common/riscv64/binutils
+++ b/config/rootfiles/common/riscv64/binutils
@@ -10,6 +10,11 @@
 #usr/bin/gp-display-text
 #usr/bin/gprof
 #usr/bin/gprofng
+#usr/bin/gprofng-archive
+#usr/bin/gprofng-collect-app
+#usr/bin/gprofng-display-html
+#usr/bin/gprofng-display-src
+#usr/bin/gprofng-display-text
 #usr/bin/ld
 #usr/bin/ld.bfd
 #usr/bin/nm
@@ -421,7 +426,7 @@ usr/bin/strings
 #usr/lib/ldscripts/elf64lriscv_lp64f.xwe
 #usr/lib/ldscripts/elf64lriscv_lp64f.xwer
 #usr/lib/ldscripts/stamp
-usr/lib/libbfd-2.43.so
+usr/lib/libbfd-2.44.so
 #usr/lib/libbfd.a
 #usr/lib/libbfd.la
 #usr/lib/libbfd.so
@@ -440,7 +445,7 @@ usr/lib/libctf.so.0.0.0
 #usr/lib/libgprofng.so
 #usr/lib/libgprofng.so.0
 #usr/lib/libgprofng.so.0.0.0
-usr/lib/libopcodes-2.43.so
+usr/lib/libopcodes-2.44.so
 #usr/lib/libopcodes.a
 #usr/lib/libopcodes.la
 #usr/lib/libopcodes.so
@@ -449,6 +454,8 @@ usr/lib/libopcodes-2.43.so
 #usr/lib/libsframe.so
 usr/lib/libsframe.so.1
 usr/lib/libsframe.so.1.0.0
+#usr/share/doc/gprofng
+#usr/share/doc/gprofng/examples.tar.gz
 #usr/share/info/as.info
 #usr/share/info/bfd.info
 #usr/share/info/binutils.info
@@ -517,6 +524,7 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/locale/ka/LC_MESSAGES/ld.mo
 #usr/share/locale/ms
 #usr/share/locale/ms/LC_MESSAGES
+#usr/share/locale/ms/LC_MESSAGES/bfd.mo
 #usr/share/locale/ms/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/opcodes.mo
@@ -582,12 +590,12 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/man/man1/c++filt.1
 #usr/share/man/man1/dlltool.1
 #usr/share/man/man1/elfedit.1
-#usr/share/man/man1/gp-archive.1
-#usr/share/man/man1/gp-collect-app.1
-#usr/share/man/man1/gp-display-html.1
-#usr/share/man/man1/gp-display-src.1
-#usr/share/man/man1/gp-display-text.1
 #usr/share/man/man1/gprof.1
+#usr/share/man/man1/gprofng-archive.1
+#usr/share/man/man1/gprofng-collect-app.1
+#usr/share/man/man1/gprofng-display-html.1
+#usr/share/man/man1/gprofng-display-src.1
+#usr/share/man/man1/gprofng-display-text.1
 #usr/share/man/man1/gprofng.1
 #usr/share/man/man1/ld.1
 #usr/share/man/man1/nm.1
diff --git a/config/rootfiles/common/x86_64/binutils b/config/rootfiles/common/x86_64/binutils
index 6f11f20b0..d56ff2814 100644
--- a/config/rootfiles/common/x86_64/binutils
+++ b/config/rootfiles/common/x86_64/binutils
@@ -10,6 +10,11 @@
 #usr/bin/gp-display-text
 #usr/bin/gprof
 #usr/bin/gprofng
+#usr/bin/gprofng-archive
+#usr/bin/gprofng-collect-app
+#usr/bin/gprofng-display-html
+#usr/bin/gprofng-display-src
+#usr/bin/gprofng-display-text
 #usr/bin/ld
 #usr/bin/ld.bfd
 #usr/bin/nm
@@ -173,7 +178,7 @@ usr/bin/strings
 #usr/lib/ldscripts/elf_x86_64.xwe
 #usr/lib/ldscripts/elf_x86_64.xwer
 #usr/lib/ldscripts/stamp
-usr/lib/libbfd-2.43.1.so
+usr/lib/libbfd-2.44.so
 #usr/lib/libbfd.a
 #usr/lib/libbfd.la
 #usr/lib/libbfd.so
@@ -192,7 +197,7 @@ usr/lib/libctf.so.0.0.0
 #usr/lib/libgprofng.so
 usr/lib/libgprofng.so.0
 usr/lib/libgprofng.so.0.0.0
-usr/lib/libopcodes-2.43.1.so
+usr/lib/libopcodes-2.44.so
 #usr/lib/libopcodes.a
 #usr/lib/libopcodes.la
 #usr/lib/libopcodes.so
@@ -201,6 +206,8 @@ usr/lib/libopcodes-2.43.1.so
 #usr/lib/libsframe.so
 usr/lib/libsframe.so.1
 usr/lib/libsframe.so.1.0.0
+#usr/share/doc/gprofng
+#usr/share/doc/gprofng/examples.tar.gz
 #usr/share/info/as.info
 #usr/share/info/bfd.info
 #usr/share/info/binutils.info
@@ -269,6 +276,7 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/locale/ka/LC_MESSAGES/ld.mo
 #usr/share/locale/ms
 #usr/share/locale/ms/LC_MESSAGES
+#usr/share/locale/ms/LC_MESSAGES/bfd.mo
 #usr/share/locale/ms/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/gprof.mo
 #usr/share/locale/nl/LC_MESSAGES/opcodes.mo
@@ -334,12 +342,12 @@ usr/lib/libsframe.so.1.0.0
 #usr/share/man/man1/c++filt.1
 #usr/share/man/man1/dlltool.1
 #usr/share/man/man1/elfedit.1
-#usr/share/man/man1/gp-archive.1
-#usr/share/man/man1/gp-collect-app.1
-#usr/share/man/man1/gp-display-html.1
-#usr/share/man/man1/gp-display-src.1
-#usr/share/man/man1/gp-display-text.1
 #usr/share/man/man1/gprof.1
+#usr/share/man/man1/gprofng-archive.1
+#usr/share/man/man1/gprofng-collect-app.1
+#usr/share/man/man1/gprofng-display-html.1
+#usr/share/man/man1/gprofng-display-src.1
+#usr/share/man/man1/gprofng-display-text.1
 #usr/share/man/man1/gprofng.1
 #usr/share/man/man1/ld.1
 #usr/share/man/man1/nm.1
diff --git a/lfs/binutils b/lfs/binutils
index 9b42ef2ae..deddcfa5e 100644
--- a/lfs/binutils
+++ b/lfs/binutils
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.43.1
+VER        = 2.44
 
 THISAPP    = binutils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -96,7 +96,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c4cd765cea326cd00b5cfe306e2937d820603b42f07a714ceb1349d36ddba0d45c3e125599dadf290d97954035c381781067155600ed87066e494cb9c4b34b45
+$(DL_FILE)_BLAKE2 = 0eb031ace9fb5a7047b81b5a05b1760f7d332c8ed67f98899f153a45f181b83e661a484551af05c0a9b2adc422da84619103c7b1f3c9fad5327872832b5446aa
 
 install : $(TARGET)
 
-- 
2.39.5


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

* [PATCH 5/5] make.sh: Bump toolchain version
  2025-02-07 12:25 [PATCH 1/5] binutils: Update to 2.43.1 Michael Tremer
                   ` (2 preceding siblings ...)
  2025-02-07 12:25 ` [PATCH 4/5] binutils: Update to 2.44 Michael Tremer
@ 2025-02-07 12:25 ` Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2025-02-07 12:25 UTC (permalink / raw)
  To: development

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

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 make.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make.sh b/make.sh
index 411107a3a..ac14af57a 100755
--- a/make.sh
+++ b/make.sh
@@ -32,7 +32,7 @@ GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"			# Git Branch
 GIT_TAG="$(git tag | tail -1)"					# Git Tag
 GIT_LASTCOMMIT="$(git rev-parse --verify HEAD)"			# Last commit
 
-TOOLCHAINVER=20250125
+TOOLCHAINVER="20250202"
 
 KVER_SUFFIX="-${SNAME}"
 
-- 
2.39.5


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

end of thread, other threads:[~2025-02-07 12:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-07 12:25 [PATCH 1/5] binutils: Update to 2.43.1 Michael Tremer
2025-02-07 12:25 ` [PATCH 2/5] qemu: Fix build against glibc >= 2.41 Michael Tremer
2025-02-07 12:25 ` [PATCH 3/5] glibc: Update to 2.41 Michael Tremer
2025-02-07 12:25 ` [PATCH 4/5] binutils: Update to 2.44 Michael Tremer
2025-02-07 12:25 ` [PATCH 5/5] make.sh: Bump toolchain version Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox