summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-09-16 19:54:26 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-09-16 19:54:26 -0700
commit07a6e98d48d4a85f18cc7977abe0f956b36f42cd (patch)
treecad04da4bf5d6efe741b0fa97cabed27e12af2f2 /configure
parent90f4312512bdc94888cf50b6f8196a97dcb80ae7 (diff)
downloadtxr-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-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index 51c11fa8..ca4e738b 100755
--- a/configure
+++ b/configure
@@ -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