Anda harus benar-benar menautkan perpustakaan juga (-I
cukup tentukan direktori include).
Coba
g++ -I/usr/include/mysql -I/usr/include/mysql++ -L/usr/local/lib -lmysqlpp -lmysqlclient test.c
Berikut ini contoh makefile untuk Anda .
Berikut contoh baris perintah untuk langkah kompilasi terpisah (buat file objek terlebih dahulu, lalu hubungkan bersama):
g++ -I/usr/include/mysql -I/usr/include/mysql++ -o test.o -c test.c
g++ -L/usr/local/lib -lmysqlpp -lmysqlclient -o test test.o