Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4162)

Unified Diff: build/android/adb_gdb

Issue 14858018: [android] Fix the adb_gdb script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_gdb
diff --git a/build/android/adb_gdb b/build/android/adb_gdb
index fcbbed6e75aab43d7683954d2aaffcff7ff6fb21..e0b3265e9f13bf14157d91d123cf9eb92dcf28da 100755
--- a/build/android/adb_gdb
+++ b/build/android/adb_gdb
@@ -359,11 +359,11 @@ else
fi
# Detect the NDK system tag, i.e. the name used to identify the host.
-# out: NDK system tag (e.g. 'linux-x86').
+# out: NDK system tag (e.g. 'linux-x86_64').
get_ndk_host_tag () {
if [ -z "$NDK_HOST_TAG" ]; then
case $(uname -s) in
- Linux) NDK_HOST_TAG=linux-x86;;
+ Linux) NDK_HOST_TAG=linux-x86_64;;
Darwin) NDK_HOST_TAG=darwin-x86;;
*) panic "You can't run this script on this system: $uname -a";;
esac
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698