mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
388bcb15e8
* android_arm64-v8a.rb -> android_arm64_v8a.rb * no-float.rb -> host-nofloat.rb
12 lines
248 B
Ruby
12 lines
248 B
Ruby
# Requires Android NDK r13 or later.
|
|
MRuby::CrossBuild.new('android-arm64-v8a') do |conf|
|
|
params = {
|
|
:arch => 'arm64-v8a',
|
|
:platform => 'android-24',
|
|
:toolchain => :clang,
|
|
}
|
|
toolchain :android, params
|
|
|
|
conf.gembox 'default'
|
|
end
|