Sha256: 363d6874eda5dd072ce25acae623e00c317086bd2f1fada8db3d50f1f228833a
Contents?: true
Size: 819 Bytes
Versions: 2
Compression:
Stored size: 819 Bytes
Contents
STDOUT.sync = STDERR.sync = true unless Rake.application.options.always_multitask MRuby::Build.new('full-debug') do |conf| conf.toolchain conf.enable_debug # include all core GEMs conf.gembox 'full-core' conf.cc.defines += %w(MRB_GC_STRESS MRB_USE_DEBUG_HOOK) conf.enable_test end MRuby::Build.new do |conf| conf.toolchain # include all core GEMs conf.gembox 'full-core' conf.gem :core => 'mruby-bin-debugger' 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| conf.toolchain conf.gembox 'full-core' conf.cc.flags += %w(-fpermissive) conf.compilers.each do |c| c.defines += %w(MRB_GC_FIXED_ARENA) end conf.enable_test conf.enable_cxx_abi conf.build_mrbc_exec end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
script_core-0.3.2 | ext/enterprise_script_service/mruby/build_config/ci/gcc-clang.rb |
script_core-0.3.0 | ext/enterprise_script_service/mruby/build_config/ci/gcc-clang.rb |