diff options
author | thislooksfun <tlf@thislooks.fun> | 2021-04-01 21:11:28 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-02 23:08:05 +0200 |
commit | 20ca1acdbf42aabc284578512f790d77b41d8e2d (patch) | |
tree | e7cf9da65122713d28dbf4d58b6ed003769cddc0 /Documentation | |
parent | 666aeecaa2c9ec252e0c6d725bf06eee3cf2be5c (diff) | |
download | serenity-20ca1acdbf42aabc284578512f790d77b41d8e2d.zip |
Documentation: Update macOS build path in BuildInstructions.md
This is a follow-up to d0427b610c52a88f2e0a13f76fbe4c7c26769999.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index eafb94ecb5..9bbb5f556f 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -126,7 +126,7 @@ Notes: - Installing osxfuse for the first time requires enabling its system extension in System Preferences and then restarting your machine. The output from installing osxfuse with brew says this, but it's easy to miss. - bash is needed because the default version installed on macOS doesn't support globstar - If you install some commercial EXT2 macOS fs handler instead of osxfuse and fuse-ext2, you will need to `brew install e2fsprogs` to obtain `mke2fs` anyway. -- As of 2020-08-06, you might need to tell the build system about your newer host compiler. Once you've built the toolchain, navigate to `Build/`, `rm -rf *`, then run `cmake .. -G Ninja -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10`, then continue with `ninja install` as usual. +- As of 2020-08-06, you might need to tell the build system about your newer host compiler. Once you've built the toolchain, navigate to `Build/i686/`, `rm -rf *`, then run `cmake ../.. -G Ninja -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10`, then continue with `ninja install` as usual. - If you are on macOS Big Sur, you will need to manually enable QEMU's acceleration before running Serenity, by creating a new file called `entitlements.xml` in the `Build/` folder, with the content below, and then run the command: `codesign -s - --entitlements entitlements.xml --force /usr/local/bin/qemu-system-x86_64`; otherwise the run command will fail. <details> |