Chinaunix首页 | 论坛 | 博客
  • 博客访问: 845982
  • 博文数量: 756
  • 博客积分: 40000
  • 博客等级: 大将
  • 技术积分: 4980
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-13 14:40
文章分类

全部博文(756)

文章存档

2011年(1)

2008年(755)

我的朋友

分类:

2008-10-13 16:10:48

审核人:[]


GCC:GNU Compiler Collection
[介绍] 她是一个GNU编译器集合,目前包括 C, C++, Objective-C, Fortran, 和 Ada 等, 以及这些语言需要的库,比如 libstdc++。
[历史小知识] 原来的GCC就是指GUN C Compiler,因为后来加入了C++等编译器,于是更名为GNU Compiler Collection。
[提示] GCC是一个编译器集合,gcc才是C语言编译器,g++才是C++语言编译器。
[最新发布版本] GCC4.1.0 发布于 2006-02-28
[主页地址]


libstdc++:GNU Standard C++ Library
[介绍] g++只是一个编译器,而g++中C++需要的标准库文件由libstdc++提供。
[最新发布版本] libstdc++-v3.0.97 发布于 2002-03-05
[主页地址]


MinGW:Minimalist GNU for Windows
[介绍] 她是一个GCC的Windows移植版本,不属于GNU范畴。
[最新发布版本] 3.4.2 发布于 2004-09-21/22
[主页地址]


 


[附] MinGW相关的IDE:
a. MinGW Developer Studio
  [介绍] 她是一个多平台的C/C++集成开发环境,以MinGW为编译内核,也支持Linux/FreeBSD等操作系统。
  [优点] 支持很多功能,比如代码折叠等,和VC++的界面、使用方法类似,还附带一个WinAPI参考手册。
  [最新发布版本 for Windows] 2.05 发布于 2005-04-01 以 MinGW3.4.2 为编译内核
  [主页地址]
  MinGWStudioFullSetup-2.05 官方下载地址:
  [ 因为访问量太大,介绍性文字可以去  查看,下载可以用  ]
b. Bloodshed Dev-C++
  [介绍] 她是一个Windows下的C/C++集成开发环境,以MinGW为编译内核。
  [最新发布版本] Dev-C++ 5.0 beta 9.2 (4.9.9.2) 以 MinGW3.4.2 为编译内核
  [主页地址]  (需要境外代理服务器)
  Dev-C++ 5.0 beta 9.2 (4.9.9.2) 官方下载地址:
  http://jaist.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://switch.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://mesh.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://umn.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://ufpr.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://nchc.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://heanet.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://citkit.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://peterhost.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://internap.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://keihanna.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://surfnet.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://ovh.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://easynews.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://puzzle.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://kent.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe
  http://optusnet.dl.sourceforge.net/sourceforge/dev-cpp/devcpp-4.9.9.2_setup.exe


[提示]
GCC是支持C99的,但其默认值不是C99标准,为了使用C99语法可以在编译参数中加入 -std=c99
(2006-11-28日补充:在dev-cpp中,有时加了-std=c99并不起作用,请如下设置
a. menu: project \ project options \ compiler \ C compiler \ Support all ANSI standard C programs 选择 NO
b. menu: project \ project options \ Parameters \ Compiler 增加 -std=c99
c. menu: Execute \ Rebuild All


[附录]
  GCC使用 AT&T汇编语法,参见
       
      
  GCC扩展了一些实用的语法,参见
  GCC使用为调试器,参见
  C99(ISO/IEC 9899:1999 (E))标准语法
  C++98(ISO/IEC 14882:2003(E))标准语法


--------------------next---------------------

阅读(441) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~