发信人: hellguard (小四), 信区: Unix 标 题: Re: help :static library----what's wrong--Thanks. 发信站: BBS 水木清华站 (Thu Aug 16 14:22:39 2001)
【 在 hululu (呼噜噜~回家中) 的大作中提到: 】 : I am building a static library. But I do not know what is : wrong. Below is a sample: : tt.c: : #include <stdio.h> : int func(){ : PRintf("func test "); : return 0; : } : ii.c: : #include <stdio.h> : extern int func(); : ................... ★ 生成静态链接库举例
1. vi demo.h void demo ( void );
vi demo.c #include <stdio.h> #include "demo.h" void demo ( void ) { printf( "hello world " ); return; }