[add compile parameter if is arm]
This commit is contained in:
parent
b473ba8ecc
commit
409695fb39
|
@ -39,12 +39,18 @@ sudo apt-get install maven
|
||||||
```
|
```
|
||||||
|
|
||||||
Build TDengine:
|
Build TDengine:
|
||||||
```cmd
|
|
||||||
|
|
||||||
|
```
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake .. && cmake --build .
|
cmake .. && cmake --build .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
if compiling on an arm64 processor, you need add one parameter:
|
||||||
|
|
||||||
|
```cmd
|
||||||
|
cmake .. -DARMVER=arm64 && cmake --build .
|
||||||
|
```
|
||||||
|
|
||||||
# Quick Run
|
# Quick Run
|
||||||
To quickly start a TDengine server after building, run the command below in terminal:
|
To quickly start a TDengine server after building, run the command below in terminal:
|
||||||
```cmd
|
```cmd
|
||||||
|
|
Loading…
Reference in New Issue