Skip to content

Commit

Permalink
Added example build script for Android armeabi-v7a NEON hardware FPU
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Jones committed Feb 16, 2017
1 parent 324231a commit fd08e0e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions examples/targets/build_config_android_armeabi_v7a_neon_hard.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,28 @@
MRuby::Build.new do |conf|

# Gets set by the VS command prompts.
if ENV['VisualStudioVersion'] || ENV['VSINSTALLDIR']
toolchain :visualcpp
else
toolchain :gcc
end

enable_debug

# include the default GEMs
conf.gembox 'default'
end

# Requires Android NDK r13 or later.
MRuby::CrossBuild.new('android-armeabi-v7a-neon-hard') do |conf|
params = {
:arch => 'armeabi-v7a',
:mfpu => 'neon',
:mfloat_abi => 'hard',
:platform => 'android-24',
:toolchain => :clang,
}
toolchain :android, params

conf.gembox 'default'
end

0 comments on commit fd08e0e

Please sign in to comment.