Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/getting-started-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ The ExecuTorch repo uses CMake to build its C++ code. Here, we'll configure it t
```bash
# Clean and configure the CMake build system. Compiled programs will
# appear in the executorch/cmake-out directory we create here.
(rm -rf cmake-out && mkdir cmake-out && cd cmake-out && cmake ..)
(rm -rf cmake-out && mkdir cmake-out && cd cmake-out && cmake .. && cd ..)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't necessary since it's in a subshell (the parentheses). That's why I put this in parens, because it won't affect the current directory of the parent shell


# Build the executor_runner target
cmake --build cmake-out --target executor_runner -j9
Expand Down
Loading