[问题] tcc 指定函数库路径

楼主: yshihyu (yshihyu)   2016-05-16 00:58:44
http://bellard.org/tcc/
tcc-0.9.26
./configure && make
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello world\n");
return 0;
}
./tcc hello.c -I include/ -L. -o test
tcc: error: file '/usr/local/lib/tcc/libtcc1.a' not found
libtcc1.a 是在当前目录下加上 -L. 为什么还是不行?
后来我测试过安装(make install)后是可以正常执行编译出来的执行档,
那闷为什么指定 -L. 却不行 , tcc -help 有看到支援 -L 参数
谢谢
作者: jserv (松鼠)   2016-05-21 23:24:00
因为 libtcc1.a 不透过 search path,请见原始程式码

Links booklink

Contact Us: admin [ a t ] ucptt.com