Ubuntu llvm compile (#361)

This commit is contained in:
lide
2018-11-28 15:22:00 +08:00
committed by ZHAO Chun
parent f1718578f3
commit 1ffc294833
3 changed files with 6 additions and 6 deletions

View File

@ -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
@ -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:

View File

@ -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

6
thirdparty/vars.sh vendored
View File

@ -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"