最佳答案
我有一个程序 还接受一些参数 from command line. It looks like this:
cat input.txt > myprogram -path "/home/user/work"
我尝试用 gdb 调试代码 在 emacs 中,通过 M-x gdb,我尝试 load the program with the command:
gdb cat input.txt > myprogram -path "/home/user/work"
However, gdb does not like it.
从 给你抄袭的问题。
不幸的是,我不理解解决方案,并且不确定除了使用 -g
选项进行编译和运行命令 M-x gdb 之外还要做些什么。