在线笔记
全部博文(596)
发布时间:2015-01-19 15:31:59
1. 设置环境变量HOME,C:\Users\Administrator2. HOME目录下放置.gdbinitadd-auto-load-safe-path D:\STREAMER\install\agent_debug\agent\.gdbinit//允许加载这个.gdbinit......【阅读全文】
发布时间:2015-01-19 14:44:15
原因:On most systems, gdb has no special support for debugging programs which create additional processes using the fork function. When a program forks, gdb will continue to debug the parent process and the child process will run unimpeded. If you have set a breakpoin.........【阅读全文】
发布时间:2015-01-19 14:20:37
区别:1. mingw是在windows开发,可以沿用linux的那一套,即gnu_make,用法与gnu_make的一致2. nmake是windows开发,使用windows即VS那一套3. gnu_make是linux开发,使用linux的那一套编译:1. mingw gcc main.c 2. nmake...3. gnu_makegcc main.c调试1. mingwgdb,注意,不是windbg2. nmakewin.........【阅读全文】
发布时间:2015-01-08 15:34:18
//run okchar *string = "abc";char *IsNULL() { return NULL; }char *IsNULL2() { return string; }TEST(EXPECT_EQ_TEST, IsNULL){ EXPECT_STRNE("", IsNULL()); E.........【阅读全文】