当前位置: 技术问答>linux和unix
关于gcc编程的问题,很简单!
来源: 互联网 发布时间:2015-01-13
本文导语: 我写了一个函数名称叫string.h,地址是/home/yyh/tt/string.h,这个头文件的复用性很强,所以我想将它作为系统头文件一样调用,比如我写了一个程序test.c(/home/test.c),里面调用了string.h(#include ),同时我设定了搜索路...
我写了一个函数名称叫string.h,地址是/home/yyh/tt/string.h,这个头文件的复用性很强,所以我想将它作为系统头文件一样调用,比如我写了一个程序test.c(/home/test.c),里面调用了string.h(#include ),同时我设定了搜索路径(set PATH=$PATH:/home/yangyh/tt/),然后我调用gcc编译,gcc test.c,程序出错,
test.c:1:17: string.h: No such file or directory
请问如何才能做到这样?
非常感谢!
test.c:1:17: string.h: No such file or directory
请问如何才能做到这样?
非常感谢!
|
gcc -i /home/yyh/tt test.c