Commit a6bb8880 authored by take_cheeze's avatar take_cheeze

append defines instead of assigning

parent f5bd87b9
...@@ -4,7 +4,7 @@ MRuby::Build.new('debug') do |conf| ...@@ -4,7 +4,7 @@ MRuby::Build.new('debug') do |conf|
# include all core GEMs # include all core GEMs
conf.gembox 'full-core' conf.gembox 'full-core'
conf.cc.defines = %w(MRB_GC_FIXED_ARENA) conf.cc.defines += %w(MRB_GC_FIXED_ARENA)
end end
MRuby::Build.new do |conf| MRuby::Build.new do |conf|
...@@ -12,5 +12,5 @@ MRuby::Build.new do |conf| ...@@ -12,5 +12,5 @@ MRuby::Build.new do |conf|
# include all core GEMs # include all core GEMs
conf.gembox 'full-core' conf.gembox 'full-core'
conf.cc.defines = %w(MRB_GC_FIXED_ARENA) conf.cc.defines += %w(MRB_GC_FIXED_ARENA)
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment