Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The simplicity (of developing, deploying and using) and meeting many data servin
## 4. Compile and install

Currently support Docker environment and Linux OS:
DockerLinux/Windows/Mac), Ubuntu and CentOS.
Docker (Linux / Windows / Mac), Ubuntu and CentOS.

### 4.1 For Docker

Expand Down Expand Up @@ -74,7 +74,7 @@ After successfully building, it will install binary files in the directory outpu

#### Prerequisites

GCC 5.3.1+Oracle JDK 1.8+Python 2.7+, Apache Maven 3.5.4+
GCC 5.3.1+, Oracle JDK 1.8+, Python 2.7+, Apache Maven 3.5+, CMake 3.4.3+

* For Ubuntu:

Expand Down
2 changes: 1 addition & 1 deletion thirdparty/build-thirdparty.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down
6 changes: 3 additions & 3 deletions thirdparty/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ CLANG_NAME=cfe-3.4.2.src.tar.gz
CLANG_SOURCE=cfe-3.4.2.src

# compiler-rt
COMPILER_RT_DOWNLOAD="http://releases.llvm.org/3.4/compiler-rt-3.4.src.tar.gz"
COMPILER_RT_NAME=compiler-rt-3.4.src.tar.gz
COMPILER_RT_SOURCE=compiler-rt-3.4
COMPILER_RT_DOWNLOAD="http://releases.llvm.org/5.0.0/compiler-rt-5.0.0.src.tar.xz"
COMPILER_RT_NAME=compiler-rt-5.0.0.src.tar.xz
COMPILER_RT_SOURCE=compiler-rt-5.0.0.src

# protobuf
PROTOBUF_DOWNLOAD="https://github.com/google/protobuf/archive/v3.5.1.tar.gz"
Expand Down