6

我在 ubuntu 12.04 中使用 android-ndk-r9d-linux-x86 的 ndk-gdb 来调试 android 本机应用程序“hello-jni”,但它收到此错误。

  WARNING: The shell running this script isn't bash.  Although we try to avoid bashism in               scripts, things can happen.
  .../adt-bundle-linux-x86-20140321/android-ndk-r9d/ndk-gdb: 143: .../adt-bundle-linux-x86-20140321/android-ndk-r9d/ndk-gdb: Bad substitution
  .../adt-bundle-linux-x86-20140321/android-ndk-r9d/ndk-gdb: 555: [: 1: unexpected operator
  .../adt-bundle-linux-x86-20140321/android-ndk-r9d/ndk-gdb: 771: [: armeabi-v7a: unexpected operator

但是 android-ndk-r8e-linux-x86 没问题,我想知道为什么?谢谢。

4

2 回答 2

1

我相信 'ndk-gdb' 已被弃用,取而代之的是 'ndk-gdb.py' (虽然这还没有被广泛宣传,IMO。)使用 r9d,我遇到了你上面报告的同样问题,但是 python 版本没有问题。

于 2014-06-11T21:02:15.410 回答
0

WARNING: The shell running this script isn't bash. Although we try to avoid bashism in scripts, things can happen.--- 这意味着您使用的是破折号之类的东西。

将 /bin/sh 更改为 /bin/bash 将解决警告和“错误替换”问题。

于 2016-03-24T09:05:18.057 回答