Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ubuntu 12.04 for C ++でGMPライブラリを使用しようとしていますが、問題が発生しています。正常にインストールしましたが、どのプログラムも動作させることができず、「'_gmpf_add'および他のすべての操作への未定義の参照。Code::BlocksIDEを使用しています。
gmp にリンクしていることを確認してください。これは、makefile を編集して LDFLAGS に「-lgmp」を追加するのと同じくらい簡単です。
例:
$ g++ gmp-code.cc -lgmp -o gmp-code