由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - 快速替换文件里面的特定值
相关主题
build image with debug info, can you build the debug symbol only ?能不能定制把应用程序窗口最上一条和菜单条合并?
Any detailed instruction to remote debug shared library in QtCreator in Linux ?GNOME取消最小化键
Vim problem (maybe not vim)GNOME 3 其实还行
求助: 文件最后修改时间最小化的替代是 lower the window
如何让VIM每次打开都回到关闭前所在行ubuntu 11.04窗口最上面的bar没了
如何每次打开同一个文件的时候,自动在上次退出的位置gnome 3 shell下如何快捷切换application?
问一个linux的命令ubuntu 12.04问题
求教ubuntu 10.04问题问个土问题
相关话题的讨论汇总
话题: debug话题: gcc话题: define话题: again话题: ddebug
进入Linux版参与讨论
1 (共1页)
i***r
发帖数: 1035
1
我在debug code的时候经常要改变DEBUG的值为0 或1
#define DEBUG 0
有没有办法直接在command line用一个命令,改掉那个值?
谢谢
G*****h
发帖数: 33134
2
let it open in an editor

【在 i***r 的大作中提到】
: 我在debug code的时候经常要改变DEBUG的值为0 或1
: #define DEBUG 0
: 有没有办法直接在command line用一个命令,改掉那个值?
: 谢谢

x****s
发帖数: 921
i***r
发帖数: 1035
4
昨天才吃了亏。我用的mac,开了一个geditor,最小化了没有注意
然后同时在用vi修改,debug半天老师不对劲
后来我认为是因为那个geditor每隔几分钟自动保存 可能是罪魁祸首。。。然后我关掉
vi,程序直接回到几个小时钱的状态。。。

【在 G*****h 的大作中提到】
: let it open in an editor
i***r
发帖数: 1035
5
duoxie!

【在 x****s 的大作中提到】
: http://www.debian-administration.org/articles/298
G*****h
发帖数: 33134
6
用 vi 就不要开其它... :)

【在 i***r 的大作中提到】
: 昨天才吃了亏。我用的mac,开了一个geditor,最小化了没有注意
: 然后同时在用vi修改,debug半天老师不对劲
: 后来我认为是因为那个geditor每隔几分钟自动保存 可能是罪魁祸首。。。然后我关掉
: vi,程序直接回到几个小时钱的状态。。。

y***d
发帖数: 2330
7
#ifndef DEBUG
#define DEBUG 0
#endif
gcc -DDEBUG=1 ...
or you can put it into a universal header file, and
gcc -Iheader.h ....
I don't think it is wise to change all the files again and again

【在 i***r 的大作中提到】
: 我在debug code的时候经常要改变DEBUG的值为0 或1
: #define DEBUG 0
: 有没有办法直接在command line用一个命令,改掉那个值?
: 谢谢

i***r
发帖数: 1035
8
我在debug code的时候经常要改变DEBUG的值为0 或1
#define DEBUG 0
有没有办法直接在command line用一个命令,改掉那个值?
谢谢
G*****h
发帖数: 33134
9
let it open in an editor

【在 i***r 的大作中提到】
: 我在debug code的时候经常要改变DEBUG的值为0 或1
: #define DEBUG 0
: 有没有办法直接在command line用一个命令,改掉那个值?
: 谢谢

x****s
发帖数: 921
相关主题
如何每次打开同一个文件的时候,自动在上次退出的位置能不能定制把应用程序窗口最上一条和菜单条合并?
问一个linux的命令GNOME取消最小化键
求教ubuntu 10.04问题GNOME 3 其实还行
进入Linux版参与讨论
i***r
发帖数: 1035
11
昨天才吃了亏。我用的mac,开了一个geditor,最小化了没有注意
然后同时在用vi修改,debug半天老师不对劲
后来我认为是因为那个geditor每隔几分钟自动保存 可能是罪魁祸首。。。然后我关掉
vi,程序直接回到几个小时钱的状态。。。

【在 G*****h 的大作中提到】
: let it open in an editor
i***r
发帖数: 1035
12
duoxie!

【在 x****s 的大作中提到】
: http://www.debian-administration.org/articles/298
G*****h
发帖数: 33134
13
用 vi 就不要开其它... :)

【在 i***r 的大作中提到】
: 昨天才吃了亏。我用的mac,开了一个geditor,最小化了没有注意
: 然后同时在用vi修改,debug半天老师不对劲
: 后来我认为是因为那个geditor每隔几分钟自动保存 可能是罪魁祸首。。。然后我关掉
: vi,程序直接回到几个小时钱的状态。。。

y***d
发帖数: 2330
14
#ifndef DEBUG
#define DEBUG 0
#endif
gcc -DDEBUG=1 ...
or you can put it into a universal header file, and
gcc -Iheader.h ....
I don't think it is wise to change all the files again and again

【在 i***r 的大作中提到】
: 我在debug code的时候经常要改变DEBUG的值为0 或1
: #define DEBUG 0
: 有没有办法直接在command line用一个命令,改掉那个值?
: 谢谢

m****0
发帖数: 2236
15
I recommend `sed`

【在 i***r 的大作中提到】
: 我在debug code的时候经常要改变DEBUG的值为0 或1
: #define DEBUG 0
: 有没有办法直接在command line用一个命令,改掉那个值?
: 谢谢

l*********s
发帖数: 5409
16
Re.

【在 y***d 的大作中提到】
: #ifndef DEBUG
: #define DEBUG 0
: #endif
: gcc -DDEBUG=1 ...
: or you can put it into a universal header file, and
: gcc -Iheader.h ....
: I don't think it is wise to change all the files again and again

1 (共1页)
进入Linux版参与讨论
相关主题
问个土问题如何让VIM每次打开都回到关闭前所在行
帮忙!!! 需要比较两文件, 有包子相送如何每次打开同一个文件的时候,自动在上次退出的位置
问个简单script问题问一个linux的命令
shell 的替换命令怎么用求教ubuntu 10.04问题
build image with debug info, can you build the debug symbol only ?能不能定制把应用程序窗口最上一条和菜单条合并?
Any detailed instruction to remote debug shared library in QtCreator in Linux ?GNOME取消最小化键
Vim problem (maybe not vim)GNOME 3 其实还行
求助: 文件最后修改时间最小化的替代是 lower the window
相关话题的讨论汇总
话题: debug话题: gcc话题: define话题: again话题: ddebug