Commit ccf69cde authored by crimsonwoods's avatar crimsonwoods

Improve Android NDK toolchain support.

Linux-x86_64 has not been supported now.
This commit add Linux-x86_64 platform support.
parent bc843ed9
...@@ -46,6 +46,8 @@ MRuby::Toolchain.new(:androideabi) do |conf| ...@@ -46,6 +46,8 @@ MRuby::Toolchain.new(:androideabi) do |conf|
HOST_PLATFORM = 'windows' HOST_PLATFORM = 'windows'
when /darwin/i when /darwin/i
HOST_PLATFORM = 'darwin-x86' HOST_PLATFORM = 'darwin-x86'
when /x86_64-linux/i
HOST_PLATFORM = 'linux-x86_64'
when /linux/i when /linux/i
HOST_PLATFORM = 'linux-x86' HOST_PLATFORM = 'linux-x86'
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment