From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id DE452385152E; Thu, 27 Oct 2022 13:50:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DE452385152E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666878658; bh=XYAId5w+JpWTFgiqZksPnz2QTeFC+sKBk0NvtnxUu0o=; h=From:To:Subject:Date:From; b=nF2G3OtEB9zl+2sECaU1skGsPjUAZnikRUE5j3V4kKeq4YtetoZJa1Zpmx7peCBIy wVNRxyxKH5STllRIfPO1hfIlHDBWUKinp28JaT+ruF2V3EFZi7GaZkWMER4V016a12 6zgz1T5ALApU8aFRAZ2oSXpXmyVrSA10WuXr0mso= 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: fa2eae72ccc562228e912d17cd2ac59e50a9bc1f X-Git-Newrev: fc2bda8bbf7a6793c1ce5bea17d9dc9b702549f5 Message-Id: <20221027135058.DE452385152E@sourceware.org> Date: Thu, 27 Oct 2022 13:50:58 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fc2bda8bbf7a6793c1ce5bea17d9dc9b702549f5 commit fc2bda8bbf7a6793c1ce5bea17d9dc9b702549f5 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__