Compilation of litecoin OSX 10.9.1

I am trying to compile the source of Litecoin ( https://github.com/litecoin-project/litecoin.git ). Doing this on Windows with VmWare OSX 10.9.1 (64 bit).

I cloned it and ran in the terminal: make -f makefile.osx USE_UPNP = -

He spits out this error:

Undefined symbols for architecture x86_64:
"boost::program_options::to_internal(std::string const&)", referenced from:
 boost::program_options::detail::basic_config_file_iterator<char>::getline(std::string&) in util.o
 "boost::program_options::detail::common_config_file_iterator::common_config_file_iterator(std::set<std::string, std::less<std::string>, std::allocator<std::string> > const&, bool)", referenced from:
 boost::program_options::detail::basic_config_file_iterator<char>::basic_config_file_iterator(std::istream&, std::set<std::string, std::less<std::string>, std::allocator<std::string> > const&, bool) in util.o
"Db::verify(char const*, char const*, std::ostream*, unsigned int)", referenced from:
  CDBEnv::Verify(std::string, bool (*)(CDBEnv&, std::string)) in db.o
  CDBEnv::Salvage(std::string, bool, std::vector<std::pair<std::vector<unsigned char,     std::allocator<unsigned char> >, std::vector<unsigned char, std::allocator<unsigned char> > >, std::allocator<std::pair<std::vector<unsigned char, std::allocator<unsigned char> >, std::vector<unsigned char, std::allocator<unsigned char> > > > >&) in db.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: *** [litecoind] Error 1

I searched Google as crazy, but didn't seem to find a suitable solution.

+3
source share

All Articles