From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 561D1385E001; Wed, 23 Nov 2022 14:40:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 561D1385E001 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1669214452; bh=SnaaVmlZlSHgw/3gBkLJXBMtdHT1bjavQGpfoiZfhsc=; h=From:To:Subject:Date:From; b=AxMidiKNagjBNIO+dozXIhBC8nuVxx1O0doTO8NJqZ0SCGMJwxGRKEAkRWo5Zmq/p Vg5H1saQljtJ5aurWRQD+Dd/JgClfg3If6wec/5tsi6NmYY8VqMCSEp1kf2rpOg+iV HmD5Cml0OFo/Q9TOu1s2Iv8wYTeuPt1SqrYDciiQ= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] aarch64: morello: Add purecap abi-variants on linux X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: 76bf2cf7a5095047f4c79fb994910254a58c9244 X-Git-Newrev: 695bf0b81e8d567d4c9c8be0d4db6ffa9aab81f1 Message-Id: <20221123144052.561D1385E001@sourceware.org> Date: Wed, 23 Nov 2022 14:40:52 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=695bf0b81e8d567d4c9c8be0d4db6ffa9aab81f1 commit 695bf0b81e8d567d4c9c8be0d4db6ffa9aab81f1 Author: Szabolcs Nagy Date: Fri Apr 8 16:51:13 2022 +0100 aarch64: morello: Add purecap abi-variants on linux Diff: --- sysdeps/unix/sysv/linux/aarch64/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sysdeps/unix/sysv/linux/aarch64/Makefile b/sysdeps/unix/sysv/linux/aarch64/Makefile index 40b9a2e5de..35ed5ea181 100644 --- a/sysdeps/unix/sysv/linux/aarch64/Makefile +++ b/sysdeps/unix/sysv/linux/aarch64/Makefile @@ -8,10 +8,14 @@ endif abi-variants := lp64 abi-variants += lp64_be +abi-variants += purecap +abi-variants += purecap_be ifeq (,$(filter $(default-abi),$(abi-variants))) Unknown ABI, must be one of $(abi-variants) endif -abi-lp64-condition := !defined __AARCH64EB__ -abi-lp64_be-condition := defined __AARCH64EB__ +abi-lp64-condition := !defined __AARCH64EB__ && !defined __CHERI_PURE_CAPABILITY__ +abi-lp64_be-condition := defined __AARCH64EB__ && !defined __CHERI_PURE_CAPABILITY__ +abi-purecap-condition := !defined __AARCH64EB__ && defined __CHERI_PURE_CAPABILITY__ +abi-purecap_be-condition := defined __AARCH64EB__ && defined __CHERI_PURE_CAPABILITY__