From patchwork Fri Feb 4 16:47:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5055 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4Jr1gV3yyTz3wsl for ; Fri, 4 Feb 2022 16:48:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Jr1gM1r2Hz5HT; Fri, 4 Feb 2022 16:47:59 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Jr1gM1QRJz32MF; Fri, 4 Feb 2022 16:47:59 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Jr1gJ0p9wz2yWX for ; Fri, 4 Feb 2022 16:47:56 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4Jr1gH5MFzz80; Fri, 4 Feb 2022 16:47:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1643993275; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/9F298HWlvZBMdF9AjqI5FoaQQ7JlIvk3Zb0/RD4cE0=; b=CFJvqUJlBPV453f/3NO0ZfIyL5vb53d+sJRp+g+U71s8qzXrL3mbvnlgByg4qxx5iUC3sc lOSpIAEqskYLrSAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1643993275; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/9F298HWlvZBMdF9AjqI5FoaQQ7JlIvk3Zb0/RD4cE0=; b=vZWM2bTGdXWIBYsSRuDRo4PusgrAMkuPLstsgo/bQXm2rLopXho/Yv+k+BVd9BJQEGjdlw B96jpKXrBHMBgeOpfPG+kwMJCAb+lrC+Z0oDA9c4d+41yULSaJl0XMlb9APonh9PPKs/DO 30iThU/y8KJ+9JuDcSHgkfivPAhlUjzTqlrluMF3lyCNGZeAgI02CV9FMPdxxyxFQjWYQX d+gq/A9nFY5Liwsr4ld8nZDM0ltoXZjOKYCF5P0+Xcfhqh4gzseGJ4B3xOmHEZgxADZzXJ MJFSzJg6fvmM4llK02ZOTRUZnQydwdnTpUursaI53DzZgAUcqmhObJIXuK6ZOQ== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 04/28] glibc: Enable memory tagging on aarch64 Date: Fri, 4 Feb 2022 16:47:24 +0000 Message-Id: <20220204164748.315559-4-michael.tremer@ipfire.org> In-Reply-To: <20220204164748.315559-1-michael.tremer@ipfire.org> References: <20220204164748.315559-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" https://lwn.net/Articles/834289/ Signed-off-by: Michael Tremer --- lfs/glibc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lfs/glibc b/lfs/glibc index 9c631de4c..685e56e97 100644 --- a/lfs/glibc +++ b/lfs/glibc @@ -69,6 +69,10 @@ ifeq "$(BUILD_ARCH)" "x86_64" EXTRA_CONFIG += --enable-cet endif +ifeq "$(BUILD_ARCH)" "aarch64" + EXTRA_CONFIG += --enable-memory-tagging +endif + ############################################################################### # Top-level Rules ###############################################################################