Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,50 @@ | ||
MRuby::Build.new('debug') do |conf| | ||
toolchain :visualcpp | ||
enable_debug | ||
|
||
# include all core GEMs | ||
conf.gembox 'full-core' | ||
conf.compilers.each do |c| | ||
c.defines += %w(MRB_GC_STRESS MRB_GC_FIXED_ARENA) | ||
end | ||
|
||
build_mrbc_exec | ||
end | ||
|
||
MRuby::Build.new('full-debug') do |conf| | ||
toolchain :visualcpp | ||
enable_debug | ||
|
||
# include all core GEMs | ||
conf.gembox 'full-core' | ||
conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK) | ||
|
||
conf.enable_test | ||
end | ||
|
||
MRuby::Build.new do |conf| | ||
toolchain :visualcpp | ||
|
||
# include all core GEMs | ||
conf.gembox 'full-core' | ||
conf.compilers.each do |c| | ||
c.defines += %w(MRB_GC_FIXED_ARENA) | ||
end | ||
conf.enable_bintest | ||
conf.enable_test | ||
end | ||
|
||
MRuby::Build.new('cxx_abi') do |conf| | ||
toolchain :visualcpp | ||
|
||
conf.gembox 'full-core' | ||
conf.compilers.each do |c| | ||
c.defines += %w(MRB_GC_FIXED_ARENA) | ||
end | ||
conf.enable_bintest | ||
conf.enable_test | ||
|
||
enable_cxx_abi | ||
|
||
build_mrbc_exec | ||
end |