JonsenElizee

Software Developing Blog

"An idea is fragile . It can be killed by a scornful smile or a yawn .It can be mound down by irony and scared to death by a cold look."
"Most cultures throughout human history have not liked creative individuals .They ignore them or kill them.It is a very efficient way of stopping creativity."

------Advertising boss Charles Browe and Howard Gardner ,professor at Harvard

   :: 首页 :: 新随笔 ::  ::  :: 管理 ::
now, I got main.c, sub.h, sub.c, util.h, util.c.

how to compile main.bin?
#gcc -o main.bin *.c

how to compile sub.a?
#gcc -c -o sub.o sub.c
#ar r sub.a sub.o

how to compile sub.so?
 #gcc -fpic -c -o sub.o sub.c
#gcc -shared -o sub.so sub.o

here is the original url

posted on 2010-09-19 23:47 JonsenElizee 阅读(225) 评论(0)  编辑 收藏 引用

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


By JonsenElizee