免费注册 查看新帖 |

Chinaunix

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

请教关于g++和makefile编译问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-24 18:09 |只看该作者 |倒序浏览
我写了个程序,放在几个不同的header file和cpp file里面,当我用makefile完全编译所有的文件的时候,程序能正常运行;可是为什么在使用直接编译命令g++ *.cpp之后,程序就不能正常运行了呢?
makefile如下:

# Makefile for Garbage Collector
# July, 2005

gc_test.out:        gc_test.o gc_smart_pointer.o gc_malloc_free.o gc_iterator.o gc_descriptor.o
                g++ -Wall -ggdb gc_test.o gc_malloc_free.o gc_iterator.o gc_smart_pointer.o gc_descriptor.o -o gc_test.out

gc_test.o:         gc_test.cpp
                g++ -Wall -ggdb -c gc_test.cpp

gc_smart_pointer.o:         gc_smart_pointer.h gc_smart_pointer.cpp
                g++ -Wall -ggdb -c gc_smart_pointer.cpp

gc_malloc_free.o:         gc_malloc_free.h gc_malloc_free.cpp
                g++ -Wall -ggdb -c gc_malloc_free.cpp
               
gc_iterator.o:         gc_iterator.h gc_iterator.cpp
                g++ -Wall -ggdb -c gc_iterator.cpp

gc_descriptor.o:         gc_descriptor.h gc_descriptor.cpp
                g++ -Wall -ggdb -c gc_descriptor.cpp

clean:
                rm gc_test.out gc_test.o gc_malloc_free.o gc_iterator.o gc_smart_pointer.o gc_descriptor.o

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2005-11-24 22:36 |只看该作者
你直接用g++是怎么编译的?
是不是没有指定.h文件的位置?

论坛徽章:
0
3 [报告]
发表于 2005-11-24 23:42 |只看该作者
g++ -o *.cpp

论坛徽章:
0
4 [报告]
发表于 2005-11-25 00:57 |只看该作者
原帖由 loveeagle 于 2005-11-24 23:42 发表
g++ -o *.cpp


$g++  -c *.cpp

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP