diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-09-05 12:52:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-05 12:52:50 -0400 |
commit | a19cedfddcb91827e7509acb5d6a736b242bc360 (patch) | |
tree | bd66a3cc0d48dfa4d3ef822985fa222c0d6b3ef0 /python/servo/devenv_commands.py | |
parent | 5578cab464fe6319872ce7816e3e5219a0b4bb30 (diff) | |
download | servo-a19cedfddcb91827e7509acb5d6a736b242bc360.tar.gz servo-a19cedfddcb91827e7509acb5d6a736b242bc360.zip |
Make ndk-stack mach command support x86 builds.
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 31bfc8f48bd..9852558bce6 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -255,6 +255,7 @@ class MachCommands(CommandBase): return -1 env = self.build_env(target=target) ndk_stack = path.join(env["ANDROID_NDK"], "ndk-stack") + self.handle_android_target(target) sym_path = path.join( "target", target, @@ -262,5 +263,5 @@ class MachCommands(CommandBase): "apk", "obj", "local", - "armeabi-v7a") + self.config["android"]["lib"]) print(subprocess.check_output([ndk_stack, "-sym", sym_path, "-dump", logfile])) |