From patchwork Thu Oct 3 22:43:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Hudson-Doyle X-Patchwork-Id: 280439 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7D4AB2C007E for ; Fri, 4 Oct 2013 08:43:37 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; q=dns; s=default; b=pevpqwnC6cVbAXdIG4qxpce1/RH9eGOZByYqhz3k3HQURZHjb8 Fvlx1XE6gqL0cG8uJ1Ns/2wKX42CRbWCXnlixBKbpZSVkB59/OMvxVjNC/U0fC1Z TiLGOL6wMsDZsHSdCh2zmISxNanoxLRVUU1fFqXkreYk3LR+r/sqBEIh4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; s= default; bh=lpsKwpeOopbCpB4dzBfacwJqna0=; b=w5QqujWHh8JSVWQ32CN4 2ZeMsR7DWzygTnbMQgpFyuFiSDb2qPsIxxhuufI81/eH1xThnixfXODc1lWl/Akr lyM/IVpXmIxZwt2nae+NrvPu95dDSBNIOTdNIciq9SmmDyTQqEGfjheaVapzQ+Xb 5K+sdjAGdhyK7dKV9MD9sDU= Received: (qmail 11675 invoked by alias); 3 Oct 2013 22:43:31 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 11665 invoked by uid 89); 3 Oct 2013 22:43:31 -0000 Received: from youngberry.canonical.com (HELO youngberry.canonical.com) (91.189.89.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 03 Oct 2013 22:43:31 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED, BAYES_00 autolearn=ham version=3.3.2 X-HELO: youngberry.canonical.com Received: from [120.136.5.22] (helo=narsil) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1VRrcF-0000dw-4q; Thu, 03 Oct 2013 22:43:27 +0000 Received: by narsil (Postfix, from userid 1000) id CE4B05235AC; Fri, 4 Oct 2013 11:43:22 +1300 (NZDT) From: Michael Hudson-Doyle To: gcc-patches@gcc.gnu.org Cc: richard.earnshaw@arm.com, marcus.shawcroft@arm.com Subject: Enable building of libatomic on AArch64 User-Agent: Notmuch/0.15.2 (http://notmuchmail.org) Emacs/24.3.50.2 (x86_64-pc-linux-gnu) Date: Fri, 04 Oct 2013 11:43:22 +1300 Message-ID: <87vc1ej7qt.fsf@canonical.com> MIME-Version: 1.0 Hi, As libatomic builds for and the tests pass on AArch64 (built on x86_64 but tested on a foundation model, logs and summary: http://people.linaro.org/~mwhudson/libatomic.sum.txt http://people.linaro.org/~mwhudson/runtest-log-v-2.txt ) this patch enables the build. Cheers, mwh (first time posting to this list, let me know if I'm doing it wrong) 2013-10-04 Michael Hudson-Doyle * configure.tgt: Add AArch64 support. From c01bc2acde08f21f23465dfd0d4d0e88adc6e214 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Thu, 12 Sep 2013 16:18:00 +1200 Subject: [PATCH] libatomic is now supported on AArch64 --- libatomic/configure.tgt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt index b9e5d6c..7eaab38 100644 --- a/libatomic/configure.tgt +++ b/libatomic/configure.tgt @@ -95,11 +95,6 @@ fi # Other system configury case "${target}" in - aarch64*) - # This is currently not supported in AArch64. - UNSUPPORTED=1 - ;; - arm*-*-linux*) # OS support for atomic primitives. config_path="${config_path} linux/arm posix" -- 1.8.1.2