google-coral / coralmicro

Source code for Coral Dev Board Micro
Apache License 2.0
106 stars 44 forks source link

Issue in Getting Started build instructions #30

Open JayToltTech opened 1 year ago

JayToltTech commented 1 year ago

Description

From https://coral.ai/docs/dev-board-micro/freertos/

Instructions are:

# -B specifies the path for your build output path and
# -S specifies the path to the CMakeLists.txt file.
cmake -B out -S .

make -C out -j4

Instructions should be:

# -B specifies the path for your build output path and
# -S specifies the path to the CMakeLists.txt file.
cmake -B out -S .

ninja -C out -j4

Also, note that Coral Micro is not selectable from this bug template...

Click to expand! ### Issue Type Documentation Bug ### Operating System Mac OS ### Coral Device _No response_ ### Other Devices _No response_ ### Programming Language Other ### Relevant Log Output ```shell make -C out -j$(sysctl -n hw.ncpu) make: *** No targets specified and no makefile found. Stop. ninja -C out -j$(sysctl -n hw.ncpu) ... [1276/1276] Linking CXX executable coralmicro-app ```