2017-12-01 13 views
0

現在、Iamは単純なライブラリをリンクすることに苦労しています。G729ライブラリをリンクする(ライブラリも存在し、シンボルもあります)

私はここにBelledonne G729このようなからG729の実装をコンパイルし、正常にインストール:

cmake . -DCMAKE_INSTALL_PREFIX=/usr  
make 
make install 

シンボルは、彼らがexsist存在する場合、私がチェックした場合:

nm /usr/lib64/libbcg729.so | less 
.... 
0000000000001fb8 T _init 
000000000000de40 T initBcg729CNGChannel 
00000000000046dd T initBcg729DecoderChannel 
000000000000f5c6 T initBcg729DTXChannel 
0000000000005353 T initBcg729EncoderChannel 
0000000000010107 T initBcg729VADChannel 
.... 

しかし、私はこれをコンパイルしよう単純なmain.cpp:

#include <bcg729/decoder.h>    // for bcg729DecoderChannelContextStruct 


int main() 
{ 
    bcg729DecoderChannelContextStruct* decoderChannelContext = initBcg729DecoderChannel(); 

    return 0; 
} 

これを結果として取得します。

c++ -v main.o -o main -lbcg729 

Using built-in specs. 
COLLECT_GCC=c++ 
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper 
Target: x86_64-redhat-linux 
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux 
Thread model: posix 
gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) 
COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ 
LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ 
COLLECT_GCC_OPTIONS='-v' '-o' 'main' '-shared-libgcc' '-mtune=generic' '-march=x86-64' 
/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o main /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. main.o -lbcg729 -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o 
main.o: In function `main': 
/opt/cppplayground/main.cpp:39: undefined reference to `initBcg729DecoderChannel()' 
collect2: error: ld returned 1 exit status 

ライブラリが見つからない場合はリンカーが存在しないと言うので、私は問題がどこにあるのかわかりません。しかしこの場合、ライブラリが存在し、私が使用したい機能が存在します。

誰でも助けることができたらうれしいです;)

ありがとうございます!

+0

あなたのライブラリは 'sudo ldconfig -v'の出力にありますか? – Ptaq666

+1

はい私はそうしないと "libbcg729.so.0が見つかりません"のようなエラーが出ます – Hestalon

答えて

0

見つかった.... これはCライブラリなので、インクルードの周りに「extern」C「{}」を追加するのを忘れてしまった。

関連する問題