[add compile parameter if is arm]

This commit is contained in:
lihui 2019-12-12 17:20:45 +08:00
parent b473ba8ecc
commit 409695fb39
1 changed files with 7 additions and 1 deletions

View File

@ -39,12 +39,18 @@ sudo apt-get install maven
```
Build TDengine:
```cmd
```
mkdir build && cd build
cmake .. && cmake --build .
```
if compiling on an arm64 processor, you need add one parameter:
```cmd
cmake .. -DARMVER=arm64 && cmake --build .
```
# Quick Run
To quickly start a TDengine server after building, run the command below in terminal:
```cmd