diff options
author | Matthias Klose <doko@ubuntu.com> | 2025-09-07 10:41:09 +0200 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2025-09-07 10:41:09 +0200 |
commit | cd404684a966210c3443321716955f4aa0113e90 (patch) | |
tree | c5683995519570c27d44903dff4de30426caee56 | |
parent | 409a3c2a35c76479e60ee1ac51766e8625ec6dfd (diff) | |
download | gcc-cd404684a966210c3443321716955f4aa0113e90.zip gcc-cd404684a966210c3443321716955f4aa0113e90.tar.gz gcc-cd404684a966210c3443321716955f4aa0113e90.tar.bz2 |
libphobos: enable for powerpc64le-linux-gnu
libphobos/ChangeLog:
* configure.tgt: Add powerpc64le-linux-gnu as a supported target
when configured with --with-long-double-format=ieee.
-rw-r--r-- | libphobos/configure.tgt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libphobos/configure.tgt b/libphobos/configure.tgt index fb67183..349aec7 100644 --- a/libphobos/configure.tgt +++ b/libphobos/configure.tgt @@ -48,6 +48,15 @@ case "${target}" in power*-*-freebsd*) LIBPHOBOS_SUPPORTED=yes ;; + powerpc64le-*linux*) + LIBPHOBOS_SUPPORTED=yes + case "$ac_configure_args" in + *--with-long-double-format=ieee*) + ;; + *) + LIBDRUNTIME_ONLY=yes + esac + ;; power*-*-linux*) LIBPHOBOS_SUPPORTED=yes LIBDRUNTIME_ONLY=yes |