mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
cc3a213fef
Users can now switch to their own implementation of GEM. However, we do not guarantee that this will not be a problem in the current situation. This may need to be improved in the future.
11 lines
396 B
Ruby
11 lines
396 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"
|
|
|
|
spec.build.libmruby_core_objs << Dir.glob(File.join(__dir__, "core/**/*.c")).map { |fn|
|
|
objfile(fn.relative_path_from(__dir__).pathmap("#{spec.build_dir}/%X"))
|
|
}
|
|
end
|