本文主要是介绍android NDK开发中,用Cygwin调试本地代码时报错“Another debug session running,Use --force to kill it”原因及解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在使用ndk-gdb调试的时候,执行$NDK/ndk-gdb --verbose报错“Another debug session running,Use --force to kill it”。
我查了NDK官方文档,是这样说的:
--force: By default, ndk-gdb aborts if it finds that another native debugging session is running on the same device. Using --force will kill the session, and replace it with a new one. Note that the debugged program is *not* killed and will be stopped again.
--start: By default, ndk-gdb will try to attach to an existing running instance of your application on the target device. You can use --start to explicitly launch your application before the debugging session.
在默认情况下,NDK调试会打开ant debug这个session,但是ndk-gdb也是启动一个session,所以会发生冲突。使用force将ant debug session关闭就可以了。
我执行$NDK/ndk-gdb --verbose --force命令就没报这个错误了。
这篇关于android NDK开发中,用Cygwin调试本地代码时报错“Another debug session running,Use --force to kill it”原因及解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!