Skip to content

Commit

Permalink
Improve Android NDK toolchain support.
Browse files Browse the repository at this point in the history
Linux-x86_64 has not been supported now.
This commit add Linux-x86_64 platform support.
  • Loading branch information
crimsonwoods committed Jul 20, 2013
1 parent bc843ed commit ccf69cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tasks/toolchains/androideabi.rake
Expand Up @@ -46,6 +46,8 @@ MRuby::Toolchain.new(:androideabi) do |conf|
HOST_PLATFORM = 'windows'
when /darwin/i
HOST_PLATFORM = 'darwin-x86'
when /x86_64-linux/i
HOST_PLATFORM = 'linux-x86_64'
when /linux/i
HOST_PLATFORM = 'linux-x86'
else
Expand Down

0 comments on commit ccf69cd

Please sign in to comment.