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: 5492 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