summaryrefslogtreecommitdiffhomepage
path: root/build_config
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-10-29 22:51:36 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-10-30 17:44:46 +0900
commit9f0410789d02fe0d91c46e35b83b31c4cf8d0442 (patch)
treeee91c0906210ec3540d8c41bace42d04dfcb614b /build_config
parent85fcd2dc6f91ae4ff1ccf3954c951f19efa3570c (diff)
downloadmruby-9f0410789d02fe0d91c46e35b83b31c4cf8d0442.tar.gz
mruby-9f0410789d02fe0d91c46e35b83b31c4cf8d0442.zip
boxing_nan.h: allow `MRB_INT64` with `MRB_NAN_BOXING`.
Integers out of 32 bit range will be allocated in the heap.
Diffstat (limited to 'build_config')
-rw-r--r--build_config/boxing.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/build_config/boxing.rb b/build_config/boxing.rb
index 4b07c22e1..d861bd537 100644
--- a/build_config/boxing.rb
+++ b/build_config/boxing.rb
@@ -3,8 +3,6 @@ bits = [64, 32]
ints = [64, 32]
boxings.product(bits, ints) do |boxing, bit, int|
- next if boxing == "nan" && int == 64
-
MRuby::Build.new("boxing-#{boxing}-m#{bit}-i#{int}") do |conf|
conf.toolchain :gcc
conf.gembox 'default'