Skip to content

Commit

Permalink
Fix a wrong directory path for cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
TImada committed Dec 20, 2022
1 parent 6d55950 commit 4af9d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/freertos_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Make sure that your environment has `make` and `cmake` commands. Install them be
```
$ cd ${RASPI4_BASE}/libmetal
$ mkdir build && cd build
$ cmake ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/platforms/raspi4-freertos.cmake -DCMAKE_C_FLAGS="-I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/include -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/portable/GCC/ARM_CA72_64_BIT -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Demo/CORTEX_A72_64-bit_Raspberrypi4/rpmsg_ping/src -O2 -g3"
$ make ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/platforms/raspi4-freertos.cmake -DCMAKE_C_FLAGS="-I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/include -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/portable/GCC/ARM_CA72_64_BIT -I${RASPI4_BASE}/raspi4_freertos_rpmsg/samples/freertos/rpmsg_ping/src -O2 -g3"
$ make VERBOSE=1
```

Expand All @@ -49,7 +49,7 @@ $ make VERBOSE=1
```
$ cd ${RASPI4_BASE}/open-amp
$ mkdir build && cd build
$ cmake ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/platforms/raspi4_a53_generic.cmake -DLIBMETAL_INCLUDE_DIR=../../libmetal/build/lib/include -DLIBMETAL_LIB=../../libmetal/build/lib/libmetal.a -DCMAKE_C_FLAGS="-I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/include -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/portable/GCC/ARM_CA72_64_BIT -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Demo/CORTEX_A72_64-bit_Raspberrypi4/rpmsg_ping/src -O2 -g3"
$ cmake ../ -DCMAKE_TOOLCHAIN_FILE=../cmake/platforms/raspi4_a53_generic.cmake -DLIBMETAL_INCLUDE_DIR=../../libmetal/build/lib/include -DLIBMETAL_LIB=../../libmetal/build/lib/libmetal.a -DCMAKE_C_FLAGS="-I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/include -I${RASPI4_BASE}/raspi4_freertos/FreeRTOS/Source/portable/GCC/ARM_CA72_64_BIT -I${RASPI4_BASE}/raspi4_freertos_rpmsg/samples/freertos/rpmsg_ping/src -O2 -g3"
$ make VERBOSE=1
```

Expand Down

0 comments on commit 4af9d33

Please sign in to comment.