目前,我正在修改Raspberry Pi的C應用程序。 我建立應用程序使用此命令:如何鏈接樹莓派應用程序的libconfig庫
make
現在我想用libconfig庫。 我有這樣的問題,下面
[email protected] ~/yyyyy $ make
make --no-print-directory all-am
CC tools/xxxxx.o
CCLD tools/xxxxx
tools/xxxxx.c:2434: undefined reference to `config_read_file'
tools/xxxxx.c:2441: undefined reference to `config_lookup_string'
tools/xxxxx.c:2446: undefined reference to `config_destroy'
tools/xxxxx.c:2436: undefined reference to `config_destroy'
在libconfig manual他們說:
爲了與庫鏈接,指定「-lconfig」作爲參數傳遞給 連接。
我該如何鏈接make
命令?
向我們展示您的Makefile –
以下是一個示例:http://stackoverflow.com/questions/6451342/library-path-in-makefiles –
我正在編輯bluez應用程序。 http://www.bluez.org/download/。它的make文件太大,無法發佈到stackoverflow –