ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
21 lines
430 B
Ruby
21 lines
430 B
Ruby
MRuby::Build.new('host') do |conf|
|
|
# load specific toolchain settings
|
|
conf.toolchain
|
|
|
|
conf.enable_debug
|
|
|
|
# include the default GEMs
|
|
conf.gembox 'full-core'
|
|
|
|
# C compiler settings
|
|
conf.cc.defines = %w(MRB_USE_DEBUG_HOOK MRB_NO_BOXING MRB_UTF8_STRING)
|
|
|
|
# Generate mruby debugger command (require mruby-eval)
|
|
conf.gem :core => "mruby-bin-debugger"
|
|
|
|
# test
|
|
conf.enable_test
|
|
# bintest
|
|
conf.enable_bintest
|
|
end
|