[問題] 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