
C++
flypiggy
这个作者很懒,什么都没留下…
展开
-
OpenWrt C/C++ Development with Eclipse(Eclipse下的Openwrt开发)
OpenWrt C/C++ Development with Eclipse 第一次翻译文章,肯定有翻译的不对的地方,还请各位不吝赐教。原文:http://downloads.openwrt.org/docs/eclipse.pdf1.CopyrightThis work is licensed under the CreativeCommons Attribution-Share翻译 2013-01-30 19:03:27 · 4777 阅读 · 0 评论 -
openwrt可用helloworld
在package目录中建立src目录,并创建helloworld.c文件内容如下:#include int main(){ printf("\nHello openwrt!\n"); return 0;}创建Makefile文件,内容如下:PROGS = helloworldOBJS = helloworld.oall: $(PROGS)原创 2013-06-22 12:45:41 · 2024 阅读 · 0 评论 -
Ubuntu下调试Qt报错ptrace operation not permitted
QtCreator是一个非常好的IDE,可以用来开发Qt应用程序和一般的C++应用程序。但是在Ubuntu上调试应用程序,有时候会出现错误(如内存访问错误),QtCreator会弹出错误对话框,显示QtCreator: ptrace operation not permitted。解决方法这个错误特别出现在Ubuntu 11.04之后的版本中,为了解决这个问题,有两种方法,这两种方法都转载 2013-07-19 00:42:37 · 719 阅读 · 0 评论