sparsehashのMacOS10.15へのインストール

やりたいこと
別のツールを動かすのに必要なので、sparsehashを、GitHub https://github.com/sparsehash/sparsehash/releases/tag/sparsehash-2.0.4 からsource code (zip) をダウンロード、Mac OS10.15へインストールしようとしています。

Install

Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions.

Read_me

COMPILING --------- To compile test applications with these classes, run ./configure followed by make. To install these header files on your system, run 'make install'. (On Windows, the instructions are different; see README_windows.txt.) See INSTALL for more details. This code should work on any modern C++ system. It has been tested on Linux (Ubuntu, Fedora, RedHat, Debian), Solaris 10 x86, FreeBSD 6.0, OS X 10.3 and 10.4, and Windows under both VC++7 and VC++8.

に従って、

bash

$ ./configure; make; make install

でインストールしようとしているのですが、なかなかうまくゆきません。

困っていること
$ configureは、bash $ ./configure CXX="gcc"でうまく行ったのですが、
$ makeが、bash $ CXX="gcc" make などを試していますが、下記のエラーになってしまいます。

error

(前半部分略) std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in template_util_unittest.o "___gxx_personality_v0", referenced from: std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in template_util_unittest.o std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> > std::__1::__pad_and_output<char, std::__1::char_traits<char> >(std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> >, char const*, char const*, char const*, std::__1::ios_base&, char) in template_util_unittest.o Dwarf Exception Unwind Info (__eh_frame) in template_util_unittest.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make[1]: *** [template_util_unittest] Error 1 make: *** [all] Error 2

教えてほしいこと
・C++ でインストールできるはずなのに、コマンドで指定できず、clangが走って失敗しているのだと思うのですが、どのようにすれば、MacOS10.15のmake で、C++を指定できるのでしょうか。
・別のパッケージのインストールでは、bash $ CXX=g++ ./configure の方がうまく動いたことがあり、使い分けがわかれば教えていただきたく思います。
よろしくお願いいたします。

コメントを投稿

0 コメント