码迷,mamicode.com
首页 >  
搜索关键字:compiler    ( 2100个结果
sublime text2之js压缩-Js Minifier
一款基于Google Closure compiler压缩Js文件插件。快捷键:Ctrl+Alt+M 当前文件内压缩Js代码(不推荐)Ctrl+Alt+Shift+M 压缩Js并生成压缩文件 *.min.js安装成功重启,如果报错,在配置里改一个参数,"compiler": "uglif...
分类:Web程序   时间:2014-06-12 00:59:58    阅读次数:457
WebService WSDL动态访问
ClassName:WebServiceInvoke.csClassCode: 1 using System; 2 using System.CodeDom; 3 using System.CodeDom.Compiler; 4 using System.IO; 5 using Syste...
分类:Web程序   时间:2014-06-11 11:47:37    阅读次数:291
转载 cc、gcc、g++、CC的区别概括
gcc是C编译器;g++是C++编译器;linux下cc一般是一个符号连接,指向gcc;gcc和g++都是GUN(组织)的编译器。而CC则一般是makefile里面的一个名字,即宏定义,嘿,因为Linux/Unix都是大小写敏感的系统,这点一定要注意。cc是Unix系统的C Compiler,而gc...
分类:其他好文   时间:2014-06-09 22:57:58    阅读次数:268
Android上通过gcc编译普通的C程序
android 编译纯C程序,然后push到手机上运行。...
分类:移动开发   时间:2014-06-08 18:30:53    阅读次数:290
Maven项目设置JDK版本
在pom.xml添加plugin org.apache.maven.plugins maven-compiler-plugin 2.5.1 1.6 1.6
分类:其他好文   时间:2014-06-07 07:58:34    阅读次数:666
内核调试神器SystemTap — 探测点与语法(二)
SystemTap脚本主要是由探测点和探测点处理函数组成的,来看下都有哪些探测点可用。 The essential idea behind a systemtap script is to name events, and to give them handlers. Systemtap works by translating the script to C, running the system C compiler to create a kernel module from that. When t...
分类:其他好文   时间:2014-06-07 01:59:08    阅读次数:369
gcc gdb makefile学习笔记
一、gcc (GNU C compiler )1.预处理 gcc -E aaa.c -o aaa.i → .i(c代码) ↓ 2. 编译 gcc -S aaa.i -o aaa.s → .s(汇编代码) ↓3. 汇编 gcc -c aaa.s -o aaa.o → .o(目标代码—二进制) ↓4. ...
分类:数据库   时间:2014-06-06 15:53:44    阅读次数:325
mac 中arc的设置与使用
旧工程配置arc方案:1,直接在targets->build phases中修改compiler Flags,是否支持arc。添加:-fobjc-arc,就可以让旧项目支持arc。如果想让原来支持arc的不使用arc则添加-fno-objc-arc2,因为在build phases中可以改变是否支持...
分类:其他好文   时间:2014-06-06 11:04:27    阅读次数:250
ios中注意项
1.当导入第三方库出现不支持ARC模式,可以在项目-》Build Phases中对第三方类文件添加Compiler Flags(-fno-objc-arc)2.获取UITableViewCell中所有子控件// 获取当前tableView中的所有cellNSArray *array = [self....
分类:移动开发   时间:2014-06-04 19:04:15    阅读次数:239
Coursera compiler Set up environment and Run first program
Environment, Ubuntu 14.04set up guideSet up cool compiler1. sudo apt-get install flex bison build-essential csh openjdk-6-jdk libxaw7-dev libc6-i3862....
分类:其他好文   时间:2014-05-29 15:09:43    阅读次数:578
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!