add mips64 build instruction. (#6190)
Co-authored-by: Shuduo Sang <sdsang@taosdata.com>
This commit is contained in:
parent
171ca11a0a
commit
2d43e7f06a
|
@ -110,7 +110,7 @@ mkdir debug && cd debug
|
||||||
cmake .. && cmake --build .
|
cmake .. && cmake --build .
|
||||||
```
|
```
|
||||||
|
|
||||||
TDengine build script can detect the host machine's architecture on X86-64, X86, arm64 and arm32 platform.
|
TDengine build script can detect the host machine's architecture on X86-64, X86, arm64, arm32 and mips64 platform.
|
||||||
You can also specify CPUTYPE option like aarch64 or aarch32 too if the detection result is not correct:
|
You can also specify CPUTYPE option like aarch64 or aarch32 too if the detection result is not correct:
|
||||||
|
|
||||||
aarch64:
|
aarch64:
|
||||||
|
@ -123,6 +123,11 @@ aarch32:
|
||||||
cmake .. -DCPUTYPE=aarch32 && cmake --build .
|
cmake .. -DCPUTYPE=aarch32 && cmake --build .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
mips64:
|
||||||
|
```bash
|
||||||
|
cmake .. -DCPUTYPE=mips64 && cmake --build .
|
||||||
|
```
|
||||||
|
|
||||||
### On Windows platform
|
### On Windows platform
|
||||||
|
|
||||||
If you use the Visual Studio 2013, please open a command window by executing "cmd.exe".
|
If you use the Visual Studio 2013, please open a command window by executing "cmd.exe".
|
||||||
|
|
Loading…
Reference in New Issue