From patchwork Fri Mar 6 10:48:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szabolcs Nagy X-Patchwork-Id: 447277 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3044B140082 for ; Fri, 6 Mar 2015 21:49:07 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass reason="1024-bit key; unprotected key" header.d=sourceware.org header.i=@sourceware.org header.b=syTlkf7w; dkim-adsp=none (unprotected policy); dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:cc :subject:content-type; q=dns; s=default; b=lMt94dW6WmJcyNkoLcsEh rTCukkPZBPXOB45isOXarxAG6QfWa7Q/qRnWJlVzV4kpjTD+hVdCXoidyrkQbBoN FLfrGOBo5H13OdJvcyHF7epr/RUNxySlU+6rVoJvhbluERx4PtdNA+HrltlVNHpQ M07LX0oys0jAJNeNFr+s4g= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:cc :subject:content-type; s=default; bh=RMuOi/y8H068ZnFIPxZRpxPdmeo =; b=syTlkf7wsvrFOi9t//6TNShaxAx8PAEY7b9W7Vn6TfXafa5e+aPBOckppr/ PrMjP1FKsPhPeFNTGLWjStx6IJmxeue4KTOt8d97kWmKEoSsnu5jSic6CARBPYtG szK2sBqcv8m8+npp5jnPShqq/61wWuPP12rzN5PQLZ45bgio= Received: (qmail 74311 invoked by alias); 6 Mar 2015 10:49:01 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 74298 invoked by uid 89); 6 Mar 2015 10:49:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com Message-ID: <54F985F1.5070103@arm.com> Date: Fri, 06 Mar 2015 10:48:17 +0000 From: Szabolcs Nagy User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: libc-alpha@sourceware.org CC: Marcus Shawcroft Subject: [PATCH][aarch64] Fix the big endian loader name X-MC-Unique: 115030610482001501 AArch64 uses arch specific configure.ac fragment to set HAVE_AARCH64_BE in config.h so later the loader name can be decided based on this macro. However config.h.in needs an appropriate line to generate the macro. I think the loader name should be managed in a simpler way for future abi variants. Changelog: 2015-03-06 Szabolcs Nagy * config.h.in (HAVE_AARCH64_BE): Add. diff --git a/config.h.in b/config.h.in index 695ca35..73ddb9c 100644 --- a/config.h.in +++ b/config.h.in @@ -260,4 +260,7 @@ /* The PowerPC64 ELFv2 ABI is being used. */ #undef HAVE_ELFV2_ABI +/* AArch64 big endian ABI */ +#undef HAVE_AARCH64_BE + #endif