diff options
| author | Martin Ridgers <[email protected]> | 2024-09-12 16:04:26 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2024-09-18 16:21:43 +0200 |
| commit | 14bda16afccb5de17fe5aeb4dbd8e6b829a94043 (patch) | |
| tree | db266f15ff079f7b2522e7169287cd657b2790c2 | |
| parent | Use an example where xmake determines the build architecture for macOS (diff) | |
| download | zen-14bda16afccb5de17fe5aeb4dbd8e6b829a94043.tar.xz zen-14bda16afccb5de17fe5aeb4dbd8e6b829a94043.zip | |
Added brief section on building for macOS with multiple users
| -rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -219,6 +219,17 @@ xmake config -y --mode=debug xmake build ``` +### Multi-user scenarios +Complications can arise in situations where hardware is shared between two or +more users. To mitigate this a local version of `brew` can be used as follows; +``` +git clone https://github.com/Homebrew/brew.git ~/zen/brew +export PATH=~/zen/brew/bin:$PATH +brew tap +brew install xmake +brew install pkgconfig +``` + # Implementation Notes * The implementation currently depends only on a few libraries including the C++ standard library |