我正在尝试使用安装 LevelDb这和这make
当我在控制台中输入时,两个链接都出现错误
g++ -pthread -shared -Wl,-soname -Wl,libleveldb.so.1 -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -DNDEBUG -fPIC db/builder.cc db/c.cc db/dbformat.cc db/db_impl.cc db/db_iter.cc db/filename.cc db/log_reader.cc db/log_writer.cc db/memtable.cc db/repair.cc db/table_cache.cc db/version_edit.cc db/version_set.cc db/write_batch.cc table/block_builder.cc table/block.cc table/filter_block.cc table/format.cc table/iterator.cc table/merger.cc table/table_builder.cc table/table.cc table/two_level_iterator.cc util/arena.cc util/bloom.cc util/cache.cc util/coding.cc util/comparator.cc util/crc32c.cc util/env.cc util/env_posix.cc util/filter_policy.cc util/hash.cc util/histogram.cc util/logging.cc util/options.cc util/status.cc port/port_posix.cc -o libleveldb.so.1.17
make: g++: Command not found
make: *** [libleveldb.so.1.17] Error 127
之后没有任何命令像链接中给出的那样起作用,请帮助我如何在 ubuntu 中安装 leveldb
@AB 建议的编辑这里是输出apt-cache policy g++
g++:
Installed: (none)
Candidate: 4:4.8.2-1ubuntu6
Version table:
4:4.8.2-1ubuntu6 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
答案1
首先,您需要获取编译器,因此请使用以下命令进行安装:
sudo apt-get install g++
或更好:
sudo apt install build-essential
答案2
克隆仓库
git clone https://github.com/google/leveldb.git
更改目录
cd leveldb/
建造这个该死的东西
make
将生成的库等复制到
local/lib
sudo scp out-static/lib* out-shared/lib* /usr/local/lib/
更改为包含目录
cd include/
再次递归复制内容
sudo scp -r leveldb /usr/local/include/
创建必要的链接和缓存(供运行时链接器使用
sudo ldconfig
s...tuff 现在应该可以工作了,高兴吧 :)