diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-01-05 22:45:29 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-01-05 22:45:30 +0000 |
commit | 53ed9df8dcc4930fc314212433c339336f0e1b9f (patch) | |
tree | b878c8adbf10c17c7c738ae305c7671a5096a0db | |
parent | ae90c07c9786622acf9ee329282161ed9aea011e (diff) | |
parent | 8c346f6adad904138a1116d03cf43f8ebbac9f4d (diff) | |
download | build-53ed9df8dcc4930fc314212433c339336f0e1b9f.zip build-53ed9df8dcc4930fc314212433c339336f0e1b9f.tar.gz build-53ed9df8dcc4930fc314212433c339336f0e1b9f.tar.bz2 |
Merge "Fix incorrect name for x86 platform's gdb"
-rw-r--r-- | envsetup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/envsetup.sh b/envsetup.sh index 9a540ef..b6b62ea 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -1078,9 +1078,9 @@ function gdbclient() { elif [[ $CPU_ABI =~ (^|,)arm ]]; then GDB=arm-linux-androideabi-gdb elif [[ $CPU_ABI =~ (^|,)x86_64 ]]; then - GDB=x86_64-linux-androideabi-gdb + GDB=x86_64-linux-android-gdb elif [[ $CPU_ABI =~ (^|,)x86 ]]; then - GDB=x86_64-linux-androideabi-gdb + GDB=x86_64-linux-android-gdb elif [[ $CPU_ABI =~ (^|,)mips64 ]]; then GDB=mipsel-linux-android-gdb GDB64=mips64el-linux-android-gdb |