mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
dcaf4083d5
To enable multi-precision integer support, you need to link `mruby-bigint` mrbgem. The gem itself is empty but it turns on the "bigint" support.
7 lines
225 B
Ruby
7 lines
225 B
Ruby
MRuby::Gem::Specification.new('mruby-bigint') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.author = 'mruby developers'
|
|
spec.summary = 'Integer class extension to multiple-precision'
|
|
spec.build.defines << "MRB_USE_BIGINT"
|
|
end
|