mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
eccfe52612
Remove disable_presym from mrbc_build and cross-build fallback. Add explicit object file dependencies on presym headers in presym.rake to prevent compilation before headers are generated. Co-authored-by: Claude <noreply@anthropic.com>
11 lines
201 B
Ruby
11 lines
201 B
Ruby
MRuby::Build.new do |conf|
|
|
if ENV['VisualStudioVersion'] || ENV['VSINSTALLDIR']
|
|
conf.toolchain :visualcpp
|
|
else
|
|
conf.toolchain :gcc
|
|
end
|
|
|
|
conf.build_mrbc_exec
|
|
conf.disable_libmruby
|
|
end
|