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 ;;