Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs/getting-started: Added FreeBSD sed debug note. #226

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
3 changes: 3 additions & 0 deletions content/en/docs/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ This will allow us to select the target architecture (e.g., aarch64 or x86-64) a
$ make menuconfig
```

**Note: `OS X` is default shipped with [`FreeBSD sed`](https://man.freebsd.org/cgi/man.cgi?sed(1)) not [`GNU sed`](https://www.gnu.org/software/sed/), this may cause failure when executing above command.**
**You need to manually install `GNU sed` through `$ brew install gnu-sed` and export environment varibale `$ PATH="~/gnu-sed/libexec/gnubin:$PATH"`.**

By default the build system selects x86-64 as target architecture, so we only have to choose a target platform.
We will decide for KVM by navigating to the `Platform Configuration | KVM guest` option and selecting it.
Afterwards, we save and exit the configuration menu.
Expand Down