Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将一些参数传递给我的应用程序,其中包括 - 符号。问题是如果我通过gdb a.out -foo baa了,gdb 就会明白这些参数是针对它的,而不是针对我的应用程序的。如何解决这个问题?
gdb a.out -foo baa
gdb -q a.out
run -foo baa
选项1:
gdb --args ls /tmp
选项 2:
gdb ls
set args /tmp
run
选项 3(不知道,感谢 Ahmed):
run /tmp
也许还有其他人?