在线笔记
全部博文(596)
发布时间: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.........【阅读全文】
发布时间:2014-06-18 09:41:30
格式:-exec command {}空格\;find . -name Makefile -exec rm {} \......【阅读全文】
发布时间:2014-05-30 14:24:33
判断某个库是否存在1. configure.ac AC_CHECK_LIB(udt, udt_listen, UDT_LIBS='-ludt', AC_MSG_ERROR([udt not found])) AC_SUBST(UDT_LIBS)2. Makefile.am libspice_client_glib_2_0_la_LIBADD = \ $(UDT_LIBS) 3. automake -> Makefile..........【阅读全文】