摘要: file1.c[代码]hello.c[代码]gcc -c file1.c -o fiile1.ogcc -c hello.c -o hello.ogcc hello.o file1.o -o hello./hello注:这样连接的时候不需要在hello.c文件中加入#include"file1.c" 阅读全文
posted @ 2009-11-21 13:01 ForA 阅读(185) 评论(0) 推荐(0)
摘要: 由于是Linux新手,所以现在才开始接触线程编程,照着GUN/Linux编程指南中的一个例子输入编译,结果出现如下错误:undefined reference to 'pthread_create'undefined reference to 'pthread_join'问题原因: pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthr... 阅读全文
posted @ 2009-11-21 12:58 ForA 阅读(1427) 评论(1) 推荐(0)