From patchwork Tue Apr 23 22:59:57 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 1089820 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-499569-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=quarantine dis=none) header.from=gdcproject.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="mi5FG5im"; dkim-atps=neutral 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 44pf7K6QNBz9sNM for ; Wed, 24 Apr 2019 09:00:38 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=Cnfgb6CA+DQvaeSecZhvwJNRZ78XLaS6V2srqcTENDmYUm GaTdRhuT8yCVPRv7rjgBBsqiVNzoIAyXnP+JVTPBDivGmZUqdwRR0E4Pzmoc81CT YkSAZHUIutqmlam8E1xBgVgMMcafz/8lLC0bFntwX9EedtvEo9swDeeOo0ziA= 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 :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=Qgdfd1b/rtznIsl/gTIuifM37pQ=; b=mi5FG5imyc/xp0Uw58Fp uFa11PZUpuj5i3hKwZTwN+Tptm32fc58iIDDNFTwvM+5N3oMnXXJI+jhKVT6pTDU +yBjWf4ih8O823QUD8GfLle+wK6mWbaGGteakxSxOvEQd5SgoQiOagfafH0yn6zC VT54hJ61fGSXIMA7OPoGjTs= Received: (qmail 16793 invoked by alias); 23 Apr 2019 23:00: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 16549 invoked by uid 89); 23 Apr 2019 23:00:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-19.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:769 X-HELO: mail-qt1-f173.google.com Received: from mail-qt1-f173.google.com (HELO mail-qt1-f173.google.com) (209.85.160.173) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Apr 2019 23:00:13 +0000 Received: by mail-qt1-f173.google.com with SMTP id h16so7849192qtk.6 for ; Tue, 23 Apr 2019 16:00:10 -0700 (PDT) MIME-Version: 1.0 From: Iain Buclaw Date: Wed, 24 Apr 2019 00:59:57 +0200 Message-ID: Subject: [PATCH, libphobos] Committed added AArch64 Linux as a supported target. To: gcc-patches X-IsSubscribed: yes Hi, This patch adds arch64*-*-linux* as a supported libphobos target, something that has been passing the testsuite for a while now. Committed to trunk as r270524. diff --git a/libphobos/configure.tgt b/libphobos/configure.tgt index a53a3c3c3be..b2fe849752c 100644 --- a/libphobos/configure.tgt +++ b/libphobos/configure.tgt @@ -23,6 +23,9 @@ # broken systems. More targets shall be added after testing. LIBPHOBOS_SUPPORTED=no case "${target}" in + aarch64*-*-linux*) + LIBPHOBOS_SUPPORTED=yes + ;; arm*-*-linux*) LIBPHOBOS_SUPPORTED=yes ;;