From 0ee881cf0d2d666156c959dcbb8397240f1a7b3e Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 30 Oct 2021 12:11:56 +0200 Subject: [PATCH] Added Phytium paragraph to COMPILE.md --- docs/COMPILE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/COMPILE.md b/docs/COMPILE.md index e8d4a681..7cedbd48 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -55,6 +55,12 @@ As most RK3399 device run AARCH64 OS, you'll need an `armhf` multiarch environme As most Snapdragon 845 device run AARCH64 OS, in most cases you'll need an `armhf` multiarch environment, and an armhf gcc: On mobian, install it with `sudo apt install gcc-arm-linux-gnueabihf`. +#### for Phytium + +`mkdir build; cd build; cmake .. -DPHYTIUM=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j4` + +As most Phytium (D2000 or FT2000/4) device run AARCH64 OS, you'll need an `armhf` multiarch environment, and an armhf gcc: On debian/ubuntu, install it with `sudo apt install gcc-arm-linux-gnueabihf`. + #### for Other ARM Linux platforms `mkdir build; cd build; cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j$(nproc)`