diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2020-11-28 16:55:53 +0100 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2020-11-30 11:45:15 +0100 |
commit | e855b30c28391b190eebb8e6afc8d2116a6d85de (patch) | |
tree | 663581c0c509106a269bd72c78382709db2efd12 /libphobos | |
parent | dee11eb742484daa9efae64a4a2d62ebc751ca27 (diff) | |
download | gcc-e855b30c28391b190eebb8e6afc8d2116a6d85de.tar.gz |
d: Add freebsd support for D compiler and runtime
gcc/ChangeLog:
PR d/87818
* config.gcc (*-*-freebsd*): Add freebsd-d.o and t-freebsd.
* config/freebsd-d.c: New file.
* config/t-freebsd: New file.
libphobos/ChangeLog:
PR d/87818
* configure.tgt: Add x86_64-*-freebsd* and i?86-*-freebsd* as
supported targets.
Diffstat (limited to 'libphobos')
-rw-r--r-- | libphobos/configure.tgt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libphobos/configure.tgt b/libphobos/configure.tgt index 1ea9e0c804c..7d9c6bc0c92 100644 --- a/libphobos/configure.tgt +++ b/libphobos/configure.tgt @@ -49,6 +49,9 @@ case "${target}" in s390*-linux*) LIBPHOBOS_SUPPORTED=yes ;; + x86_64-*-freebsd* | i?86-*-freebsd*) + LIBPHOBOS_SUPPORTED=yes + ;; x86_64-*-kfreebsd*-gnu | i?86-*-kfreebsd*-gnu) LIBPHOBOS_SUPPORTED=yes ;; |