3

ソースをプログラムにコンパイルすることで、Windowsで行っていたのと同じ方法でsqlite3融合を構築するのに問題があります。これが私の現在のメイクファイルです

all:
    gcc -g -c sqlite3.c -o sqlite3.o
    g++ -g -c main.cpp -o main.o
    g++ -o test sqlite3.o main.o

私のmain.cppファイル:

#include "sqlite3.h"

int main(){
  //nothing
 return 0;
}

コンパイル時に受け取るエラーは次のとおりです。

sqlite.o: In function `pthreadMutexAlloc':
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:17910: undefined reference to
`pthread_mutexattr_init'
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:17911: undefined reference to
`pthread_mutexattr_settype'
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:17913: undefined reference to`pthread_mutexattr_destroy'
sqlite.o: In function    
`pthreadMutexTry':
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:18042: undefined reference to `pthread_mutex_trylock'
sqlite.o: In function `unixDlOpen': /home/kendal/c++/sqlite3/test/../lib/sqlite3.c:28164: undefined reference to `dlopen' 
sqlite.o: In function `unixDlError':
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:28178: undefined reference to `dlerror'
sqlite.o: In function `unixDlSym':
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:28204: undefined reference to `dlsym'
sqlite.o: In function `unixDlClose':
/home/kendal/c++/sqlite3/test/../lib/sqlite3.c:28209: undefined reference to `dlclose'
4

1 に答える 1

8

pthreads と dl にもリンクする必要があります。次のようにします。

all:
  gcc -g -c sqlite3.c -o sqlite3.o
  g++ -g -c main.cpp -o main.o
  g++ -o test -pthread -ldl sqlite3.o main.o

「-lpthread」の使用は「-pthread」の使用とは少し異なります。「-lpthread」は pthread-library に対するリンクを意味し、「-pthread」は g++ が pthread インターフェースを備えた適切なスレッド化ライブラリを選択することを意味します。これが、「-pthread」を使用することを好む理由です。

「-ldl」を追加すると、dlsym、dlopen などを含むライブラリである「dl」ライブラリにリンクすることになります。

于 2012-10-14T06:55:05.620 に答える