在gdb manual中有这一部分:
if else
此命令允许有条件地包含在脚本中 执行命令。 if命令只接受一个参数 表达以评估...
当我使用数字表达式时,我可以在我的gdbinit中执行测试,例如
if (42 == 42)
print "42"
end
但是当我想对String执行测试时,就像这样:
if ("a" == "a")
print "yes"
end
然后当我启动gdb时出现错误:
.gdbinit:45: Error in sourced command file:
You can't do that without a process to debug.
我试图找到表达式语法的文档或示例,但没有成功,以便编写我的条件块。
我想要实现的是基于环境变量添加一堆命令。所以我需要在我的gdbinit中有这样的部分:
if ("${myEnvVar}" == "someSpecialValue")
#my set of special values
end
如何实现?
编辑:看起来最简单的方法是使用python来执行这种操作:How to access environment variables inside .gdbinit and inside gdb itself?
如果没有办法用纯粹的' gdb命令,我想这个问题应该作为副本关闭。
答案 0 :(得分:1)
如何实现?
如果您拥有嵌入式Python的GDB(最新的GDB版本),您可以随心所欲地使用Python。
例如:
# ~/.gdbinit
source ~/.gdbinit.py
# ~/.gdbinit.py
import os
h = os.getenv("MY_ENV_VAR")
if h:
print "MY_ENV_VAR =", h
gdb.execute("set history size 100")
# Put other settings here ...
else:
print "MY_ENV_VAR is unset"
让我们看看它是否有效:
$ gdb -q
MY_ENV_VAR is unset
(gdb) q
$ MY_ENV_VAR=abc gdb -q
MY_ENV_VAR = abc
(gdb)