diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-07-21 17:04:31 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-07-21 17:04:31 -0700 |
| commit | 7d28f30b61725330831e73768fb2464bce5b7b48 (patch) | |
| tree | 3ed455ced652742eeaa8cf971823de02c633ab46 | |
| parent | bc843ed9272d9733cafea7df130134264d15d6d9 (diff) | |
| parent | ccf69cde8ae52aee86db1b1eff286798e3cc5aed (diff) | |
| download | mruby-7d28f30b61725330831e73768fb2464bce5b7b48.tar.gz mruby-7d28f30b61725330831e73768fb2464bce5b7b48.zip | |
Merge pull request #1393 from crimsonwoods/add-android-ndk-linux-x86_64-support
Improve Android NDK toolchain support.
| -rw-r--r-- | tasks/toolchains/androideabi.rake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tasks/toolchains/androideabi.rake b/tasks/toolchains/androideabi.rake index 51897667e..a20027c0d 100644 --- a/tasks/toolchains/androideabi.rake +++ b/tasks/toolchains/androideabi.rake @@ -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 |
