1
我不希望最終用戶必須安裝庫,因此,將庫包裝在我的exec中將是首選。如何將外部庫靜態鏈接到我的可執行文件中?
這是在make文件中的相關行:
hPif : src/main.o src/fann_utils.o src/hashes.o src/Config.o
g++ -o hPif src/main.o src/fann_utils.o src/hashes.o src/Config.o -static -lfann -lboost -L/usr/local/lib
我試圖鏈接范文芳和提升,而我讀的地方(http://www.adp-gmbh.ch/cpp/ gcc/create_lib.html)使用-static標誌允許。
我在做什麼錯?