diff options
author | Christophe Lyon <christophe.lyon@arm.com> | 2022-03-09 14:27:10 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@arm.com> | 2022-05-20 09:31:15 +0200 |
commit | afd82c104b1038572ed4d473a0b5f6e2c778fa01 (patch) | |
tree | db678cf53bdf7ba64bf1fbddfd6d268629dcf8f4 /libdecnumber/configure | |
parent | 6865c9599f6cfe29ec05963d40916c20ed38029c (diff) | |
download | gcc-afd82c104b1038572ed4d473a0b5f6e2c778fa01.zip gcc-afd82c104b1038572ed4d473a0b5f6e2c778fa01.tar.gz gcc-afd82c104b1038572ed4d473a0b5f6e2c778fa01.tar.bz2 |
aarch64: Enable DFP (Decimal Floating-point) (BID format)
This patch enables DFP support on aarch64, by updating config/dfp.m4
and regenerating the involved configure scripts.
We enable the BID format.
2022-03-31 Christophe Lyon <christophe.lyon@arm.com>
config/
* dfp.m4: Add aarch64 support.
gcc/
* configure: Regenerate.
libdecnumber/
* configure: Regenerate.
libgcc/
* configure: Regenerate.
Diffstat (limited to 'libdecnumber/configure')
-rwxr-xr-x | libdecnumber/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libdecnumber/configure b/libdecnumber/configure index da5302f..fb6db05 100755 --- a/libdecnumber/configure +++ b/libdecnumber/configure @@ -4903,6 +4903,7 @@ Valid choices are 'yes', 'bid', 'dpd', and 'no'." "$LINENO" 5 ;; else case $target in + aarch64* | \ powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \ i?86*-*-elfiamcu | i?86*-*-gnu* | x86_64*-*-gnu* | \ i?86*-*-mingw* | x86_64*-*-mingw* | \ @@ -4923,7 +4924,7 @@ fi case x$enable_decimal_float in xyes) case $target in - i?86*-*-* | x86_64*-*-*) + aarch64* | i?86*-*-* | x86_64*-*-*) enable_decimal_float=bid ;; *) |