From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 71E8A3853810; Wed, 26 Oct 2022 15:12:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 71E8A3853810 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666797146; bh=wiMyv7v9UDzW4PYRSWL+9tgu8NpBFGeK4nc+i0E494g=; h=From:To:Subject:Date:From; b=heDFtf+vkj+6NSU58L0W5rDVPw5N/Qy+mAhkT1kTK3ARwSS5UTYlT74/VCqGIv6HT Kz0wSCpFM07wQCdqk419jg6w8xrcVyLdQuOVP+pni6tAUUqweeBG0A+ZBZjfl8MEj+ KC+0tN2JAIzAWkpMF/QVf5Kv9JrC6bEAyqJ6xiv8= 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: 9249688d6d22f38f108795913c0342cd7abca112 X-Git-Newrev: d1c717caaacd0d9146a628d37c400e26e9d1b1d1 Message-Id: <20221026151226.71E8A3853810@sourceware.org> Date: Wed, 26 Oct 2022 15:12:24 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d1c717caaacd0d9146a628d37c400e26e9d1b1d1 commit d1c717caaacd0d9146a628d37c400e26e9d1b1d1 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__