From: Iain Buclaw Date: Tue, 23 Apr 2019 22:53:35 +0000 (+0000) Subject: libphobos: Add AArch64 Linux as a supported target. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a012806011225b46f537c9e1ed8bdcf31f991916;p=gcc.git libphobos: Add AArch64 Linux as a supported target. libphobos/ChangeLog: 2019-04-24 Iain Buclaw * configure.tgt: Add aarch64*-*-linux* as a supported target. From-SVN: r270524 --- diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index e7d3319b21d..6f741eaeb44 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,7 @@ +2019-04-24 Iain Buclaw + + * configure.tgt: Add aarch64*-*-linux* as a supported target. + 2019-04-23 Iain Buclaw Robin Dapp 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 ;;