码迷,mamicode.com
首页 >  
搜索关键字:suse gcc    ( 8770个结果
NDK: GCC 4.6 crashes
used version: NDK r9b,arm-linux-androideabi-4.6 GCC, with "-O2 -finline-limit=24".got this error:internal compiler error: segmentation faultI remember...
分类:其他好文   时间:2014-06-29 14:14:45    阅读次数:303
gdb初步窥探
本文是通过学习左耳朵皓帝的文章,详见:http://blog.csdn.net/haoel1.使用gdbgdb主要是用来调试c和c++程序,首先在编译前我们先把调试信息加到可执行程序当中,使用参数 -g 可以实现这一点。dzhwen@deng:~/first$ gcc -g tst.c -o tst...
分类:数据库   时间:2014-06-07 03:36:19    阅读次数:320
-ffunction-sections -Wl,--gc-sections
AVR/GCC设置不链接未调用的函数 http://blog.csdn.net/shevsten/article/details/7049688在AVR Studio4/5的AVR/GCC默认设置下,未调用的函数也会被link进最终的镜像,从而增大image的大小,这会浪费flash资源.以下是如....
分类:其他好文   时间:2014-06-04 18:59:56    阅读次数:840
Centos6.3不能使用yum install安装gcc编辑器解决办法
mv/var/lib/rpm/__db*/tmprpm--rebuilddbyumcleanall
分类:其他好文   时间:2014-05-30 09:19:30    阅读次数:167
opencv安装
Cmake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件apt-get install cmakelinux操作系统上面开发程序, 光有了gcc 是不行的它还需要一个 build-essential软件包作...
分类:其他好文   时间:2014-05-30 03:08:46    阅读次数:332
linux平台上面python调用c
不能免俗,先打印个helloworld出来,c代码的函数hello.c#include int helloworld(){ printf("hello world!"); return 0;}然后编译成动态链接库 gcc hello.c -fPIC -shared -o libhello...
分类:编程语言   时间:2014-05-30 02:08:52    阅读次数:467
centos setup nginx
安装说明系统环境:CentOS-6.3软件:nginx-1.2.6.tar.gz安装方式:源码编译安装安装位置:/usr/local/nginx下载地址:http://nginx.org/en/download.html安装前提在安装nginx前,需要确保系统安装了g++、gcc、openssl-d...
分类:其他好文   时间:2014-05-28 09:28:53    阅读次数:368
suse下设置IP的两种方法
/Files/yzhxhwt/DB_51aspx.rar第一种SUSE Linux IP设置方法ifconfig eth0 192.168.1.22 netmask 255.255.255.0 uproute add default gw 192.168.1.2释义:#IP配置,包括子网掩码,看情况...
分类:其他好文   时间:2014-05-27 16:21:57    阅读次数:320
gcc使用笔记
1.如何在gcc中传输宏定义?参考如下红色部分,可以传入宏定义gcc [-c|-S|-E] [-std=standard] [-g] [-pg] [-Olevel] [-Wwarn...] [-pedantic] [-Idir...] [-...
分类:其他好文   时间:2014-05-26 18:08:16    阅读次数:183
《软件调试的艺术》笔记--预备知识
1.gcc的-g选项 如果要使用gdb进行调试,必须在编译时在gcc中加入-g选项,使用参数 -g 表示将源代码信息编译到可执行文件中。 如果不使用-g选项: #include int main(void) { int i = 1; i = i + 1; printf("i = %d\n",i); return 0; }gcc main.c gdb a.out (...
分类:其他好文   时间:2014-05-25 21:38:46    阅读次数:238
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!