免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1288 | 回复: 0
打印 上一主题 下一主题

终于搞清楚了gcc(g++)多文件编译的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-17 00:11 |只看该作者 |倒序浏览
终于弄懂了如何编译多个模块的以c/c++程序.
说实在的,本人目前接触linux时间才几个月,所有我所知道的可能是一些最基本的东西.

呵呵,下面写的东西对于那些高手来说不定有帮助,不过对于刚接触gcc/g++的朋友可能有些帮助.
1.简单程序(单模块程序)的编译
文件file1.c
#include
int main()
{
        printf("hello\n");
        return 0;
}
文件file1.cpp
#include
using std::cout;
using std::endl;
int main()
{
        cout
#include "first.h"
first()
{
    printf("this is just a test!");
    return 0;
}
文件second.h
int mymax(int,int);
文件second.c
mymax(x,y)
{
    if(x>y)
        return x;
    else
        return y;
}
文件main.c
#include "first.h"
#include "second.h"
#include
int main()
{
    int a,b;
    a=10;
    b=20;   
    first();
    printf("%d\n",mymax(a,b));
    return 0;
}
下面是在终端中输入的内容
[xiaochen@freeware ~]$ gcc -c first.c
[xiaochen@freeware ~]$ gcc -c second.c
[xiaochen@freeware ~]$ gcc -c main.c
[xiaochen@freeware ~]$ gcc first.o second.o main.o -o main
[xiaochen@freeware ~]$ ./main
this is just a test!20
当然啦也可以这么输入
[xiaochen@freeware ~]$ gcc first.c second.c main.c -o main
不过以上的方法不是很好,因为对于文件数不是很多的程序,手动输入以上几个命令还不是很累,但如果是个文件数很多的程序呢,如果这样输入,那肯定会很累.
对于模块数很多程序,我们可以写一个makefile文件.然后使用make命令就可以了.
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/70635/showart_1316413.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP