主页

代码格式化工具astyle的安装和使用

简介 AStyle,即 Artistic Style,是一个可用于 C, C++, C++/CLI, Objective‑C, C# 和Java编程语言格式化和美化的工具。 下载 1、Astyle官网下载地址:https://sourceforge.net/projects/astyle 2、Astyle官方文档地址:http://astyle.sourceforge.net/astyle.html 3、Astyle风格设置:参考《Google 开源项目 c/c++风格》 安装 windows windows下有二进制文件,直接下载,解压后,把二进制程序加入环境变量即可。 linux Linux下需要自己下载源码,编译安装。 解压到指定目录 在...

阅读更多

GCC编译

编译流程 预处理 Pre-Processing 展开头文件、宏替换、去掉注释、条件编译 编译 Compiling 检查语法,生成汇编 汇编 Assembling 汇编代码转换为二进制机器码 链接 Linking 选项 GCC & G++编译选项 -E :输出预处理后的文件 g++ -E xxx.cpp > xxx.txt -S : 生成编译后的汇编文件 g++ -S xxx.cpp -c : 生成.o二进制目标文件 g++ -c xxx.cpp -shared :该选项指定生成动态连接库 -shared :...

阅读更多

Welcome

If you see this page, that means you have setup your site. enjoy! :ghost: :ghost: :ghost: You may want to config the site or writing a post next. Please feel free to create an issue or send me email if you have any questions.

阅读更多