diff options
author | Andreas Tobler <andreast@gcc.gnu.org> | 2016-10-10 23:31:17 +0200 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2016-10-10 23:31:17 +0200 |
commit | b20e75328b83d1c67f354996cd6b744ae5cfc91d (patch) | |
tree | adc1d6350482b057f631371e0513adca88cd7812 /libgcc | |
parent | b7beb16ac139b766a3b6adcae15ae5a358c0b83c (diff) | |
download | gcc-b20e75328b83d1c67f354996cd6b744ae5cfc91d.tar.gz |
configure.ac: Add aarch64-*-freebsd*.
toplevel:
2016-10-10 Andreas Tobler <andreast@gcc.gnu.org>
* configure.ac: Add aarch64-*-freebsd*.
* configure: Regenerate.
gcc:
2016-10-10 Andreas Tobler <andreast@gcc.gnu.org>
* config.gcc: Add aarch64-*-freebsd* support.
* config.host: Likewise.
* config/aarch64/aarch64-freebsd.h: New file.
* config/aarch64/t-aarch64-freebsd: Ditto.
libgcc:
2016-10-10 Andreas Tobler <andreast@gcc.gnu.org>
* config.host: Add support for aarch64-*-freebsd*.
From-SVN: r240949
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/config.host | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index ce5a25024fc..f627591bedb 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2016-10-10 Andreas Tobler <andreast@gcc.gnu.org> + + * config.host: Add support for aarch64-*-freebsd*. + 2016-10-05 Andreas Schwab <schwab@suse.de> * config/ia64/crtbegin.S (__do_jv_register_classes): Remove. diff --git a/libgcc/config.host b/libgcc/config.host index 002f650be9a..1c90e233d57 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -331,6 +331,11 @@ aarch64*-*-elf | aarch64*-*-rtems*) tmake_file="${tmake_file} ${cpu_type}/t-aarch64" tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm" ;; +aarch64*-*-freebsd*) + extra_parts="$extra_parts crtfastmath.o" + tmake_file="${tmake_file} ${cpu_type}/t-aarch64" + tmake_file="${tmake_file} ${cpu_type}/t-softfp t-softfp t-crtfm" + ;; aarch64*-*-linux*) extra_parts="$extra_parts crtfastmath.o" md_unwind_header=aarch64/linux-unwind.h |