From nobody Tue Mar 19 11:50:33 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1565196643; cv=none; d=zoho.com; s=zohoarc; b=HbqJVLXppg0SLLDRKExZ9oVk9VQWGXwfGtQ0sfrDYKc/xiKxUM4ECisdH4mE4pr3yAktf/n9EKoNqU3Rh1u5H4AYqzeoGxNVUSU6Tx8E1eBy30pP7Ti9qmeo06wb+bBv9hmsn8ycScZ7un5q9hLeC7irCFQbI7Zg9X0b+It577A= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1565196643; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=bqiREm945GfIGc61acyuB+/x9iBGsQDY1f8NSGmYVRw=; b=Gf0RbMlQvkjW+pwu+l+CZJUyS30LGN7IiDl442Enfn4UlnMB88b+EY4G/msxs2CD+q3DY5ETNnc+Y3l3Y23H3l4ORVbQXtKP6NGlDyGOrVuPLWF1Gc3VtqDQtsMl5iMQKuSYTeL9H4Y3jNgT2jNEVBQGvnV1vlLRN/a6xc8AEXE= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1565196643941332.4423237989571; Wed, 7 Aug 2019 09:50:43 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hvP7o-0007HA-1S; Wed, 07 Aug 2019 16:49:20 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hvP7l-0007H1-Tr for xen-devel@lists.xenproject.org; Wed, 07 Aug 2019 16:49:17 +0000 Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id 4ac3e3d2-b933-11e9-8980-bc764e045a96; Wed, 07 Aug 2019 16:49:16 +0000 (UTC) Received: from localhost (c-67-164-102-47.hsd1.ca.comcast.net [67.164.102.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9A59A2229C; Wed, 7 Aug 2019 16:49:15 +0000 (UTC) X-Inumbo-ID: 4ac3e3d2-b933-11e9-8980-bc764e045a96 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1565196555; bh=44PYsWGCqETOMJ0ipTggdvBTvhlwEFkJIxoLSe6BBg4=; h=Date:From:To:cc:Subject:From; b=UQpcXohvpR9Ywx9yerec1YSIr6fHnH1FOGpsDJHq5d/agM7i3zB8JkWdDZJptc/bM Tyyo4U2SOSrvX46ud2YvYQpgQxL2VqBe7fvPxTvS7UHXgyxGwHGuOGSAwgRoUjFjlk VsrmqJlI2LnIDMfdkEzkLuiEodGkLcvE0Gao6f8A= Date: Wed, 7 Aug 2019 09:49:15 -0700 (PDT) From: Stefano Stabellini X-X-Sender: sstabellini@sstabellini-ThinkPad-T480s To: xen-devel@lists.xenproject.org Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Subject: [Xen-devel] [PATCH v2] xen/arm: unbreak arm64 build for older toolchains X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: julien.grall@arm.com, sstabellini@kernel.org, Volodymyr_Babchuk@epam.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) Commit 4941bfb "xen/arm64: macros: Introduce an assembly macro to alias x30" moved lr .req x30 to macros.h. A later patch (1396dab "xen/arm64: head: Don't clobber x30/lr in the macro PRINT") started to use "lr" in head.S, however, it didn't add an #include macros.h to head.S. This commit fixes it. The lack of alias breaks the build with gcc-linaro-5.3.1-2016.05-x86_64_aarch64-linux-gnu. The alias was added later to binutiles 2.29 in 2017. Signed-off-by: Stefano Stabellini Reviewed-by: Julien Grall --- Changes in v2: - improve commit message diff --git a/xen/arch/arm/arm64/head.S b/xen/arch/arm/arm64/head.S index 28efe9230c..50cff08756 100644 --- a/xen/arch/arm/arm64/head.S +++ b/xen/arch/arm/arm64/head.S @@ -25,6 +25,7 @@ #include #include #include +#include =20 #define PT_PT 0xf7f /* nG=3D1 AF=3D1 SH=3D11 AP=3D01 NS=3D1 ATTR=3D111= T=3D1 P=3D1 */ #define PT_MEM 0xf7d /* nG=3D1 AF=3D1 SH=3D11 AP=3D01 NS=3D1 ATTR=3D111= T=3D0 P=3D1 */ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel