diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-09-16 19:54:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-09-16 19:54:26 -0700 |
commit | 0a88979c9763352126b3ed8232915025bd02aff4 (patch) | |
tree | cad04da4bf5d6efe741b0fa97cabed27e12af2f2 | |
parent | 31a86a186874fc6425195342c7bebb8080bacdbc (diff) | |
download | txr-0a88979c9763352126b3ed8232915025bd02aff4.tar.gz txr-0a88979c9763352126b3ed8232915025bd02aff4.tar.bz2 txr-0a88979c9763352126b3ed8232915025bd02aff4.zip |
nan-boxing: make default on 64 bit.
* configure: automatically select NaN boxing
on 64 bit platforms.
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1586,8 +1586,7 @@ fi if ! [ $nan_boxing_given ] ; then printf "Checking whether to use NaN boxing ... " - # too experimental: disabled - if false && [ $SIZEOF_PTR -eq 8 ] ; then + if [ $SIZEOF_PTR -eq 8 ] ; then nan_boxing=y printf "yes\n" else |