Giter Club home page Giter Club logo

anna's Introduction

Anna: A KVS for any scale

Note: This is a snapshot of the Anna codebase as of March, 2018. The latest codebase is released and maintained here (https://github.com/hydro-project/anna).

Anna is an in-memory KVS that delivers high performance at multiple scales, from a single core machine to NUMA to geo-distributed deployment. It also provides a wide spectrum of coordination-free isolation levels that aim to meet the consistency requirements of different applications.

Build Instruction (Ubuntu):

  1. Install Clang and libc++, run:
    sudo apt-get update.
    sudo apt-get install -y build-essential autoconf automake libtool curl make g++ unzip pkg-config wget clang-3.9.
    sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 1.
    sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 1.
    sudo apt-get install -y libc++-dev libc++abi-dev libtbb-dev.

  2. Install cmake, run:
    wget https://cmake.org/files/v3.9/cmake-3.9.4-Linux-x86_64.tar.gz.
    tar xvzf cmake-3.9.4-Linux-x86_64.tar.gz.
    mv cmake-3.9.4-Linux-x86_64 /usr/bin/cmake.
    export PATH=$PATH:/usr/bin/cmake/bin.
    rm cmake-3.9.4-Linux-x86_64.tar.gz.

  3. Install protobuf: after cloning the protobuf repo, run:
    ./autogen.sh.
    ./configure CXX=clang++ CXXFLAGS='-std=c++11 -stdlib=libc++ -O3 -g'.
    make.
    make check.
    sudo make install.
    ldconfig.

  4. Build KVS, run:
    bash scripts/build_release.sh.
    (This command will build a KVS that provides last-writer-win consistency. Lattice composition for other consistency levels can be found in kvs/include)

IP Configuration:

For each server node:

  1. The ip of the current node should be stored in conf/server/server_ip.txt.
  2. The ip of the seed node should be stored in conf/server/seed_server.txt. The seed node can be any proxy node.
  3. The ip of all the proxy nodes should be stored in conf/server/proxy_address.txt. Each line contains a single proxy ip.

For each proxy node:

  1. The ip of the current node should be stored in conf/proxy/proxy_ip.txt.

For each user/benchmark node:

  1. The ip of the current node should be stored in conf/user/user_ip.txt.
  2. The ip of all the proxy nodes should be stored in conf/user/proxy_address.txt. Each line contains a single proxy ip.

Run Instruction:

Please start the proxy first, and then the server and client.

  1. Start a proxy by running ./build/kvs/kvs_proxy.
  2. Start a server by running ./build/kvs/kvs_server.
  3. Start a client by running ./build/kvs/kvs_user.

The accepted input formats are GET $key and PUT $key $value.

anna's People

Contributors

cw75 avatar jhellerstein avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

anna's Issues

No rule to make target 'vendor/boost/src/boost/stage/lib/libboost_system.so'

[ 97%] Building CXX object kvs/CMakeFiles/kvs_proxy.dir/include/socket_cache.cc.o
make[2]: *** No rule to make target 'vendor/boost/src/boost/stage/lib/libboost_system.so', needed by 'kvs/kvs_proxy'. Stop.
make[1]: *** [CMakeFiles/Makefile2:572: kvs/CMakeFiles/kvs_proxy.dir/all] Error 2
make: *** [Makefile:84: all] Error 2

errer occurs when i try to compile, ubuntu 16.04

fatal error: 'cstddef' file not found

I got this when building kvs:
In file included from ../../include/tbb/tbb_stddef.h:95:
../../include/tbb/tbb_config.h:40:14: fatal error: 'cstddef' file not found
#include
^
1 error generated.
make[4]: *** [concurrent_hash_map.o] 错误 1
make[3]: *** [tbb] 错误 2
make[2]: *** [vendor/tbb/src/tbb-stamp/tbb-build] 错误 2
make[1]: *** [vendor/tbb/CMakeFiles/tbb.dir/all] 错误 2
make: *** [all] 错误 2

No rule to make target libtbb.so error

make[2]: *** No rule to make target 'vendor/tbb/src/tbb/build/linux_intel64_clang_cc4.8_libc2.19_kernel3.13.0_release/libtbb.so', needed by 'kvs/kvs_server'. Stop.
CMakeFiles/Makefile2:423: recipe for target 'kvs/CMakeFiles/kvs_server.dir/all' failed

Compilation failed

Someone said it was because of a bug in Ubuntu,I know why!
My system environment is as follows:

Linux woodong-pc 4.13.0-37-generic #42~16.04.1-Ubuntu SMP Wed Mar 7 16:03:28 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

logs:

...patience...
...found 1368 targets...
...updating 75 targets...
common.mkdir stage
common.mkdir stage/lib
common.mkdir bin.v2/libs/system/build/clang-linux-3.9.1/release
common.mkdir bin.v2/libs/system/build/clang-linux-3.9.1/release/threading-multi
clang-linux.compile.c++.without-pth bin.v2/libs/system/build/clang-linux-3.9.1/release/threading-multi/error_code.o
clang-linux.link.dll bin.v2/libs/system/build/clang-linux-3.9.1/release/threading-multi/libboost_system.so.1.62.0
common.copy stage/lib/libboost_system.so.1.62.0
ln-UNIX stage/lib/libboost_system.so
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/pthread
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/pthread/thread.o
In file included from libs/thread/src/pthread/thread.cpp:11:
In file included from ./boost/thread/thread_only.hpp:17:
In file included from ./boost/thread/pthread/thread_data.hpp:12:
In file included from ./boost/thread/lock_types.hpp:18:
In file included from ./boost/thread/thread_time.hpp:9:
In file included from ./boost/date_time/time_clock.hpp:17:
In file included from ./boost/shared_ptr.hpp:17:
In file included from ./boost/smart_ptr/shared_ptr.hpp:28:
In file included from ./boost/smart_ptr/detail/shared_count.hpp:29:
In file included from ./boost/smart_ptr/detail/sp_counted_base.hpp:45:
In file included from ./boost/smart_ptr/detail/sp_counted_base_clang.hpp:18:
In file included from ./boost/detail/sp_typeinfo.hpp:20:
In file included from ./boost/core/typeinfo.hpp:119:
In file included from ./boost/core/demangle.hpp:32:
/usr/include/c++/v1/cxxabi.h:21:10: fatal error: '__cxxabi_config.h' file not found
#include <__cxxabi_config.h>
         ^
1 error generated.

  "clang++" -c -x c++ "-stdlib=libc++" -Wextra -Wno-long-long -Wno-unused-parameter -Wno-variadic-macros -Wunused-function -O3 -Wno-inline -Wall -pthread -fPIC -m64 "-stdlib=libc++" -Wextra -Wno-long-long -Wno-unused-parameter -Wno-variadic-macros -Wunused-function -DBOOST_ALL_NO_LIB=1 -DBOOST_SYSTEM_DYN_LINK=1 -DBOOST_THREAD_BUILD_DLL=1 -DBOOST_THREAD_DONT_USE_CHRONO -DBOOST_THREAD_POSIX -DNDEBUG -I"." -o "bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/pthread/thread.o" "libs/thread/src/pthread/thread.cpp"

...failed clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/pthread/thread.o...
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/pthread/once.o
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi/future.o
...skipped <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi>libboost_thread.so.1.62.0 for lack of <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi>pthread/thread.o...
...skipped <pstage/lib>libboost_thread.so.1.62.0 for lack of <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/threading-multi>libboost_thread.so.1.62.0...
...skipped <pstage/lib>libboost_thread.so for lack of <pstage/lib>libboost_thread.so.1.62.0...
common.mkdir bin.v2/libs/chrono
common.mkdir bin.v2/libs/chrono/build
common.mkdir bin.v2/libs/chrono/build/clang-linux-3.9.1
common.mkdir bin.v2/libs/chrono/build/clang-linux-3.9.1/release
common.mkdir bin.v2/libs/chrono/build/clang-linux-3.9.1/release/threading-multi
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/threading-multi/chrono.o
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/threading-multi/thread_clock.o
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/threading-multi/process_cpu_clocks.o
clang-linux.link.dll bin.v2/libs/chrono/build/clang-linux-3.9.1/release/threading-multi/libboost_chrono.so.1.62.0
common.copy stage/lib/libboost_chrono.so.1.62.0
ln-UNIX stage/lib/libboost_chrono.so
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/asm
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/asm/make_x86_64_sysv_elf_gas.o
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/asm/jump_x86_64_sysv_elf_gas.o
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/asm/ontop_x86_64_sysv_elf_gas.o
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/posix
clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/posix/stack_traits.o
In file included from libs/context/src/posix/stack_traits.cpp:24:
In file included from ./boost/thread.hpp:13:
In file included from ./boost/thread/thread.hpp:12:
In file included from ./boost/thread/thread_only.hpp:17:
In file included from ./boost/thread/pthread/thread_data.hpp:12:
In file included from ./boost/thread/lock_types.hpp:18:
In file included from ./boost/thread/thread_time.hpp:9:
In file included from ./boost/date_time/time_clock.hpp:17:
In file included from ./boost/shared_ptr.hpp:17:
In file included from ./boost/smart_ptr/shared_ptr.hpp:28:
In file included from ./boost/smart_ptr/detail/shared_count.hpp:29:
In file included from ./boost/smart_ptr/detail/sp_counted_base.hpp:45:
In file included from ./boost/smart_ptr/detail/sp_counted_base_clang.hpp:18:
In file included from ./boost/detail/sp_typeinfo.hpp:20:
In file included from ./boost/core/typeinfo.hpp:119:
In file included from ./boost/core/demangle.hpp:32:
/usr/include/c++/v1/cxxabi.h:21:10: fatal error: '__cxxabi_config.h' file not found
#include <__cxxabi_config.h>
         ^
1 error generated.

  "clang++" -c -x c++ "-stdlib=libc++" -O3 -Wno-inline -Wall -pthread -fPIC -m64 "-stdlib=libc++" -DBOOST_ALL_NO_LIB=1 -DBOOST_CHRONO_DYN_LINK=1 -DBOOST_CONTEXT_DYN_LINK=1 -DBOOST_CONTEXT_SOURCE -DBOOST_DISABLE_ASSERTS -DBOOST_SYSTEM_DYN_LINK=1 -DBOOST_SYSTEM_NO_DEPRECATED -DBOOST_THREAD_BUILD_DLL=1 -DBOOST_THREAD_POSIX -DBOOST_THREAD_USE_DLL=1 -DNDEBUG -I"." -o "bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/posix/stack_traits.o" "libs/context/src/posix/stack_traits.cpp"

...failed clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/posix/stack_traits.o...
clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi/execution_context.o
...skipped <pbin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi>libboost_context.so.1.62.0 for lack of <pbin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi>posix/stack_traits.o...
...skipped <pstage/lib>libboost_context.so.1.62.0 for lack of <pbin.v2/libs/context/build/clang-linux-3.9.1/release/threading-multi>libboost_context.so.1.62.0...
...skipped <pstage/lib>libboost_context.so for lack of <pstage/lib>libboost_context.so.1.62.0...
common.mkdir bin.v2/libs/system/build/clang-linux-3.9.1/release/link-static
common.mkdir bin.v2/libs/system/build/clang-linux-3.9.1/release/link-static/threading-multi
clang-linux.compile.c++.without-pth bin.v2/libs/system/build/clang-linux-3.9.1/release/link-static/threading-multi/error_code.o
clang-linux.archive bin.v2/libs/system/build/clang-linux-3.9.1/release/link-static/threading-multi/libboost_system.a
common.copy stage/lib/libboost_system.a
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi
common.mkdir bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/pthread
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/pthread/thread.o
In file included from libs/thread/src/pthread/thread.cpp:11:
In file included from ./boost/thread/thread_only.hpp:17:
In file included from ./boost/thread/pthread/thread_data.hpp:12:
In file included from ./boost/thread/lock_types.hpp:18:
In file included from ./boost/thread/thread_time.hpp:9:
In file included from ./boost/date_time/time_clock.hpp:17:
In file included from ./boost/shared_ptr.hpp:17:
In file included from ./boost/smart_ptr/shared_ptr.hpp:28:
In file included from ./boost/smart_ptr/detail/shared_count.hpp:29:
In file included from ./boost/smart_ptr/detail/sp_counted_base.hpp:45:
In file included from ./boost/smart_ptr/detail/sp_counted_base_clang.hpp:18:
In file included from ./boost/detail/sp_typeinfo.hpp:20:
In file included from ./boost/core/typeinfo.hpp:119:
In file included from ./boost/core/demangle.hpp:32:
/usr/include/c++/v1/cxxabi.h:21:10: fatal error: '__cxxabi_config.h' file not found
#include <__cxxabi_config.h>
         ^
1 error generated.

  "clang++" -c -x c++ "-stdlib=libc++" -Wextra -Wno-long-long -Wno-unused-parameter -Wno-variadic-macros -Wunused-function -O3 -Wno-inline -Wall -pthread -m64 "-stdlib=libc++" -Wextra -Wno-long-long -Wno-unused-parameter -Wno-variadic-macros -Wunused-function -DBOOST_ALL_NO_LIB=1 -DBOOST_SYSTEM_STATIC_LINK=1 -DBOOST_THREAD_BUILD_LIB=1 -DBOOST_THREAD_DONT_USE_CHRONO -DBOOST_THREAD_POSIX -DNDEBUG -I"." -o "bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/pthread/thread.o" "libs/thread/src/pthread/thread.cpp"

...failed clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/pthread/thread.o...
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/pthread/once.o
clang-linux.compile.c++.without-pth bin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi/future.o
...skipped <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_thread.a(clean) for lack of <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi>pthread/thread.o...
...skipped <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_thread.a for lack of <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi>pthread/thread.o...
...skipped <pstage/lib>libboost_thread.a for lack of <pbin.v2/libs/thread/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_thread.a...
common.mkdir bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static
common.mkdir bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static/threading-multi
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static/threading-multi/chrono.o
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static/threading-multi/thread_clock.o
clang-linux.compile.c++.without-pth bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static/threading-multi/process_cpu_clocks.o
clang-linux.archive bin.v2/libs/chrono/build/clang-linux-3.9.1/release/link-static/threading-multi/libboost_chrono.a
common.copy stage/lib/libboost_chrono.a
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/asm
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/asm/make_x86_64_sysv_elf_gas.o
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/asm/jump_x86_64_sysv_elf_gas.o
clang-linux.compile.asm bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/asm/ontop_x86_64_sysv_elf_gas.o
common.mkdir bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/posix
clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/posix/stack_traits.o
In file included from libs/context/src/posix/stack_traits.cpp:24:
In file included from ./boost/thread.hpp:13:
In file included from ./boost/thread/thread.hpp:12:
In file included from ./boost/thread/thread_only.hpp:17:
In file included from ./boost/thread/pthread/thread_data.hpp:12:
In file included from ./boost/thread/lock_types.hpp:18:
In file included from ./boost/thread/thread_time.hpp:9:
In file included from ./boost/date_time/time_clock.hpp:17:
In file included from ./boost/shared_ptr.hpp:17:
In file included from ./boost/smart_ptr/shared_ptr.hpp:28:
In file included from ./boost/smart_ptr/detail/shared_count.hpp:29:
In file included from ./boost/smart_ptr/detail/sp_counted_base.hpp:45:
In file included from ./boost/smart_ptr/detail/sp_counted_base_clang.hpp:18:
In file included from ./boost/detail/sp_typeinfo.hpp:20:
In file included from ./boost/core/typeinfo.hpp:119:
In file included from ./boost/core/demangle.hpp:32:
/usr/include/c++/v1/cxxabi.h:21:10: fatal error: '__cxxabi_config.h' file not found
#include <__cxxabi_config.h>
         ^
1 error generated.

  "clang++" -c -x c++ "-stdlib=libc++" -O3 -Wno-inline -Wall -pthread -m64 "-stdlib=libc++" -DBOOST_ALL_NO_LIB=1 -DBOOST_CHRONO_STATIC_LINK=1 -DBOOST_CONTEXT_SOURCE -DBOOST_DISABLE_ASSERTS -DBOOST_SYSTEM_NO_DEPRECATED -DBOOST_SYSTEM_STATIC_LINK=1 -DBOOST_THREAD_BUILD_LIB=1 -DBOOST_THREAD_POSIX -DBOOST_THREAD_USE_LIB=1 -DNDEBUG -I"." -o "bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/posix/stack_traits.o" "libs/context/src/posix/stack_traits.cpp"

...failed clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/posix/stack_traits.o...
clang-linux.compile.c++.without-pth bin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi/execution_context.o
...skipped <pbin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_context.a(clean) for lack of <pbin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi>posix/stack_traits.o...
...skipped <pbin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_context.a for lack of <pbin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi>posix/stack_traits.o...
...skipped <pstage/lib>libboost_context.a for lack of <pbin.v2/libs/context/build/clang-linux-3.9.1/release/link-static/threading-multi>libboost_context.a...
...failed updating 4 targets...
...skipped 12 targets...
...updated 59 targets...
vendor/boost/CMakeFiles/boost.dir/build.make:113: recipe for target 'vendor/boost/src/boost-stamp/boost-build' failed
make[2]: *** [vendor/boost/src/boost-stamp/boost-build] Error 1
CMakeFiles/Makefile2:140: recipe for target 'vendor/boost/CMakeFiles/boost.dir/all' failed
make[1]: *** [vendor/boost/CMakeFiles/boost.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2

No rule for libboost_system.so

make[2]: *** 没有规则可制作目标“vendor/boost/src/boost/stage/lib/libboost_system.so”,由“kvs/kvs_proxy” 需求。 停止。
make[1]: *** [CMakeFiles/Makefile2:572:kvs/CMakeFiles/kvs_proxy.dir/all] 错误 2
make: *** [Makefile:84:all] 错误 2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.