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 | 07a6e98d48d4a85f18cc7977abe0f956b36f42cd (patch) | |
tree | cad04da4bf5d6efe741b0fa97cabed27e12af2f2 /configure | |
parent | 90f4312512bdc94888cf50b6f8196a97dcb80ae7 (diff) | |
download | txr-07a6e98d48d4a85f18cc7977abe0f956b36f42cd.tar.gz txr-07a6e98d48d4a85f18cc7977abe0f956b36f42cd.tar.bz2 txr-07a6e98d48d4a85f18cc7977abe0f956b36f42cd.zip |
nan-boxing: make default on 64 bit.
* configure: automatically select NaN boxing
on 64 bit platforms.
Diffstat (limited to 'configure')
-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 |