├── .env ├── .github └── workflows │ ├── build.yml │ └── docker.yml ├── .gitignore ├── Makefile ├── README.md ├── cxx-compiler-abi-version.sh ├── docker ├── Makefile ├── buildx │ ├── centos-7.Dockerfile │ ├── centos-8.Dockerfile │ ├── rockylinux-8.Dockerfile │ ├── ubuntu-1604.Dockerfile │ ├── ubuntu-1804.Dockerfile │ ├── ubuntu-2004.Dockerfile │ ├── ubuntu-2204.Dockerfile │ └── ubuntu-2404.Dockerfile ├── oss-upload.sh └── run.sh ├── install-third-party.sh └── project ├── CMakeLists.txt ├── check-so-libs.sh ├── cmake ├── ExternalProjectGit.cmake ├── FindAutoconf.cmake ├── FindAutoconfArchive.cmake ├── FindAutomake.cmake └── FindLibtool.cmake ├── externals ├── abseil.cmake ├── annoy.cmake ├── arrow.cmake ├── autoconf-archive.cmake ├── autoconf.cmake ├── automake.cmake ├── berkeleydb.cmake ├── bison.cmake ├── boost.cmake ├── breakpad.cmake ├── bzip2.cmake ├── c-ares.cmake ├── cachelib.cmake ├── capstone.cmake ├── config_guess.sh ├── cppjieba.cmake ├── cyrus-sasl.cmake ├── datasketches.cmake ├── date.cmake ├── double-conversion.cmake ├── duckdb.cmake ├── eigen.cmake ├── faiss.cmake ├── fatal.cmake ├── fizz.cmake ├── flex.cmake ├── fmt.cmake ├── folly.cmake ├── gettext.cmake ├── gflags.cmake ├── glog.cmake ├── googlebenchmark.cmake ├── googletest.cmake ├── gperf.cmake ├── grpc.cmake ├── hnswlib.cmake ├── inja.cmake ├── jemalloc.cmake ├── jwt-cpp.cmake ├── ldap.cmake ├── libcurl.cmake ├── libdwarf.cmake ├── libev.cmake ├── libevent.cmake ├── libtool.cmake ├── libunwind.cmake ├── libxml2.cmake ├── limonp.cmake ├── llvm.cmake ├── lz4.cmake ├── lzma.cmake ├── mstch.cmake ├── nlohmann-json.cmake ├── openblas.cmake ├── openssl.cmake ├── pkg.m4 ├── pkgconf.cmake ├── protobuf.cmake ├── protoc-gen-go-grpc.cmake ├── protoc-gen-go.cmake ├── protoc-gen-grpc-java.cmake ├── proxygen.cmake ├── re2.cmake ├── robin-hood-hashing.cmake ├── rocksdb.cmake ├── s2geometry.cmake ├── simdjson.cmake ├── snappy.cmake ├── sodium.cmake ├── sparsemap.cmake ├── tomlplusplus.cmake ├── utf8proc.cmake ├── valijson.cmake ├── wangle.cmake ├── xsimd.cmake ├── yaml-cpp.cmake ├── zlib.cmake └── zstd.cmake └── patches ├── arrow-18.0.0.patch ├── breakpad-aarch64.patch ├── bzip2-1.0.8.patch ├── cachelib-2022-12-26.patch ├── duckdb-0.6.1.patch ├── fbthrift-2022-12-26.patch ├── fizz-2022-12-26.patch ├── fmt-9.1.0.patch ├── folly-2022-12-26.patch ├── glog-0.6.0.patch ├── libev-4.33.patch ├── lss-2021-12-20.tgz ├── proxygen-2022-12-26.patch ├── rocksdb-7.8.3.patch ├── s2geometry-0.10.0.patch ├── s2geometry-0.9.0.patch └── snappy-1.1.9.patch /.env: -------------------------------------------------------------------------------- 1 | VERSION=5.1 2 | URL_BASE=https://oss-cdn.nebula-graph.com.cn/third-party 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/README.md -------------------------------------------------------------------------------- /cxx-compiler-abi-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/cxx-compiler-abi-version.sh -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/buildx/centos-7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/centos-7.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/centos-8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/centos-8.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/rockylinux-8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/rockylinux-8.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/ubuntu-1604.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/ubuntu-1604.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/ubuntu-1804.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/ubuntu-1804.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/ubuntu-2004.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/ubuntu-2004.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/ubuntu-2204.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/ubuntu-2204.Dockerfile -------------------------------------------------------------------------------- /docker/buildx/ubuntu-2404.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/buildx/ubuntu-2404.Dockerfile -------------------------------------------------------------------------------- /docker/oss-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/oss-upload.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/docker/run.sh -------------------------------------------------------------------------------- /install-third-party.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/install-third-party.sh -------------------------------------------------------------------------------- /project/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/CMakeLists.txt -------------------------------------------------------------------------------- /project/check-so-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/check-so-libs.sh -------------------------------------------------------------------------------- /project/cmake/ExternalProjectGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/cmake/ExternalProjectGit.cmake -------------------------------------------------------------------------------- /project/cmake/FindAutoconf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/cmake/FindAutoconf.cmake -------------------------------------------------------------------------------- /project/cmake/FindAutoconfArchive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/cmake/FindAutoconfArchive.cmake -------------------------------------------------------------------------------- /project/cmake/FindAutomake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/cmake/FindAutomake.cmake -------------------------------------------------------------------------------- /project/cmake/FindLibtool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/cmake/FindLibtool.cmake -------------------------------------------------------------------------------- /project/externals/abseil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/abseil.cmake -------------------------------------------------------------------------------- /project/externals/annoy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/annoy.cmake -------------------------------------------------------------------------------- /project/externals/arrow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/arrow.cmake -------------------------------------------------------------------------------- /project/externals/autoconf-archive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/autoconf-archive.cmake -------------------------------------------------------------------------------- /project/externals/autoconf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/autoconf.cmake -------------------------------------------------------------------------------- /project/externals/automake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/automake.cmake -------------------------------------------------------------------------------- /project/externals/berkeleydb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/berkeleydb.cmake -------------------------------------------------------------------------------- /project/externals/bison.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/bison.cmake -------------------------------------------------------------------------------- /project/externals/boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/boost.cmake -------------------------------------------------------------------------------- /project/externals/breakpad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/breakpad.cmake -------------------------------------------------------------------------------- /project/externals/bzip2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/bzip2.cmake -------------------------------------------------------------------------------- /project/externals/c-ares.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/c-ares.cmake -------------------------------------------------------------------------------- /project/externals/cachelib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/cachelib.cmake -------------------------------------------------------------------------------- /project/externals/capstone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/capstone.cmake -------------------------------------------------------------------------------- /project/externals/config_guess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/config_guess.sh -------------------------------------------------------------------------------- /project/externals/cppjieba.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/cppjieba.cmake -------------------------------------------------------------------------------- /project/externals/cyrus-sasl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/cyrus-sasl.cmake -------------------------------------------------------------------------------- /project/externals/datasketches.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/datasketches.cmake -------------------------------------------------------------------------------- /project/externals/date.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/date.cmake -------------------------------------------------------------------------------- /project/externals/double-conversion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/double-conversion.cmake -------------------------------------------------------------------------------- /project/externals/duckdb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/duckdb.cmake -------------------------------------------------------------------------------- /project/externals/eigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/eigen.cmake -------------------------------------------------------------------------------- /project/externals/faiss.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/faiss.cmake -------------------------------------------------------------------------------- /project/externals/fatal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/fatal.cmake -------------------------------------------------------------------------------- /project/externals/fizz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/fizz.cmake -------------------------------------------------------------------------------- /project/externals/flex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/flex.cmake -------------------------------------------------------------------------------- /project/externals/fmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/fmt.cmake -------------------------------------------------------------------------------- /project/externals/folly.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/folly.cmake -------------------------------------------------------------------------------- /project/externals/gettext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/gettext.cmake -------------------------------------------------------------------------------- /project/externals/gflags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/gflags.cmake -------------------------------------------------------------------------------- /project/externals/glog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/glog.cmake -------------------------------------------------------------------------------- /project/externals/googlebenchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/googlebenchmark.cmake -------------------------------------------------------------------------------- /project/externals/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/googletest.cmake -------------------------------------------------------------------------------- /project/externals/gperf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/gperf.cmake -------------------------------------------------------------------------------- /project/externals/grpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/grpc.cmake -------------------------------------------------------------------------------- /project/externals/hnswlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/hnswlib.cmake -------------------------------------------------------------------------------- /project/externals/inja.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/inja.cmake -------------------------------------------------------------------------------- /project/externals/jemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/jemalloc.cmake -------------------------------------------------------------------------------- /project/externals/jwt-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/jwt-cpp.cmake -------------------------------------------------------------------------------- /project/externals/ldap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/ldap.cmake -------------------------------------------------------------------------------- /project/externals/libcurl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libcurl.cmake -------------------------------------------------------------------------------- /project/externals/libdwarf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libdwarf.cmake -------------------------------------------------------------------------------- /project/externals/libev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libev.cmake -------------------------------------------------------------------------------- /project/externals/libevent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libevent.cmake -------------------------------------------------------------------------------- /project/externals/libtool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libtool.cmake -------------------------------------------------------------------------------- /project/externals/libunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libunwind.cmake -------------------------------------------------------------------------------- /project/externals/libxml2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/libxml2.cmake -------------------------------------------------------------------------------- /project/externals/limonp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/limonp.cmake -------------------------------------------------------------------------------- /project/externals/llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/llvm.cmake -------------------------------------------------------------------------------- /project/externals/lz4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/lz4.cmake -------------------------------------------------------------------------------- /project/externals/lzma.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/lzma.cmake -------------------------------------------------------------------------------- /project/externals/mstch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/mstch.cmake -------------------------------------------------------------------------------- /project/externals/nlohmann-json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/nlohmann-json.cmake -------------------------------------------------------------------------------- /project/externals/openblas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/openblas.cmake -------------------------------------------------------------------------------- /project/externals/openssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/openssl.cmake -------------------------------------------------------------------------------- /project/externals/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/pkg.m4 -------------------------------------------------------------------------------- /project/externals/pkgconf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/pkgconf.cmake -------------------------------------------------------------------------------- /project/externals/protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/protobuf.cmake -------------------------------------------------------------------------------- /project/externals/protoc-gen-go-grpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/protoc-gen-go-grpc.cmake -------------------------------------------------------------------------------- /project/externals/protoc-gen-go.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/protoc-gen-go.cmake -------------------------------------------------------------------------------- /project/externals/protoc-gen-grpc-java.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/protoc-gen-grpc-java.cmake -------------------------------------------------------------------------------- /project/externals/proxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/proxygen.cmake -------------------------------------------------------------------------------- /project/externals/re2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/re2.cmake -------------------------------------------------------------------------------- /project/externals/robin-hood-hashing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/robin-hood-hashing.cmake -------------------------------------------------------------------------------- /project/externals/rocksdb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/rocksdb.cmake -------------------------------------------------------------------------------- /project/externals/s2geometry.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/s2geometry.cmake -------------------------------------------------------------------------------- /project/externals/simdjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/simdjson.cmake -------------------------------------------------------------------------------- /project/externals/snappy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/snappy.cmake -------------------------------------------------------------------------------- /project/externals/sodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/sodium.cmake -------------------------------------------------------------------------------- /project/externals/sparsemap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/sparsemap.cmake -------------------------------------------------------------------------------- /project/externals/tomlplusplus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/tomlplusplus.cmake -------------------------------------------------------------------------------- /project/externals/utf8proc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/utf8proc.cmake -------------------------------------------------------------------------------- /project/externals/valijson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/valijson.cmake -------------------------------------------------------------------------------- /project/externals/wangle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/wangle.cmake -------------------------------------------------------------------------------- /project/externals/xsimd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/xsimd.cmake -------------------------------------------------------------------------------- /project/externals/yaml-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/yaml-cpp.cmake -------------------------------------------------------------------------------- /project/externals/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/zlib.cmake -------------------------------------------------------------------------------- /project/externals/zstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/externals/zstd.cmake -------------------------------------------------------------------------------- /project/patches/arrow-18.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/arrow-18.0.0.patch -------------------------------------------------------------------------------- /project/patches/breakpad-aarch64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/breakpad-aarch64.patch -------------------------------------------------------------------------------- /project/patches/bzip2-1.0.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/bzip2-1.0.8.patch -------------------------------------------------------------------------------- /project/patches/cachelib-2022-12-26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/cachelib-2022-12-26.patch -------------------------------------------------------------------------------- /project/patches/duckdb-0.6.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/duckdb-0.6.1.patch -------------------------------------------------------------------------------- /project/patches/fbthrift-2022-12-26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/fbthrift-2022-12-26.patch -------------------------------------------------------------------------------- /project/patches/fizz-2022-12-26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/fizz-2022-12-26.patch -------------------------------------------------------------------------------- /project/patches/fmt-9.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/fmt-9.1.0.patch -------------------------------------------------------------------------------- /project/patches/folly-2022-12-26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/folly-2022-12-26.patch -------------------------------------------------------------------------------- /project/patches/glog-0.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/glog-0.6.0.patch -------------------------------------------------------------------------------- /project/patches/libev-4.33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/libev-4.33.patch -------------------------------------------------------------------------------- /project/patches/lss-2021-12-20.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/lss-2021-12-20.tgz -------------------------------------------------------------------------------- /project/patches/proxygen-2022-12-26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/proxygen-2022-12-26.patch -------------------------------------------------------------------------------- /project/patches/rocksdb-7.8.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/rocksdb-7.8.3.patch -------------------------------------------------------------------------------- /project/patches/s2geometry-0.10.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/s2geometry-0.10.0.patch -------------------------------------------------------------------------------- /project/patches/s2geometry-0.9.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/s2geometry-0.9.0.patch -------------------------------------------------------------------------------- /project/patches/snappy-1.1.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-third-party/HEAD/project/patches/snappy-1.1.9.patch --------------------------------------------------------------------------------