diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2025-02-21 18:02:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-21 18:02:19 -0800 |
| commit | 61961fb938fa2ff9a6b2391be09ad19d46b7b3d5 (patch) | |
| tree | 7ef814f477dc8cbf5c48d5c52997ef83ffcd604f /docs | |
| parent | a96c93d9363c72010eace4e32c053e012afe5b9a (diff) | |
Remove asm-processor in favor of preprocess.sh (#1760)
* Remove asm-processor in favor of preprocess.sh
* Remove duplicate CMD_F
* preprocess_pragmas gitignore
* Mac fixes
* Macos + clang as cc check fixes
* Need quotes for paths with spaces
* Fix bss
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/BUILDING_MACOS.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/BUILDING_MACOS.md b/docs/BUILDING_MACOS.md index fe47ca5f0..ef8758c33 100644 --- a/docs/BUILDING_MACOS.md +++ b/docs/BUILDING_MACOS.md @@ -12,12 +12,13 @@ For macOS, use Homebrew to install the following dependencies: * libpng * bash * libxml2 +* libiconv You can install them with the following commands: ```bash brew update -brew install coreutils make python3 libpng bash libxml2 +brew install coreutils make python3 libpng bash libxml2 libiconv ``` (The repository expects Homebrew-installed programs to be either linked correctly in `$PATH` etc. or in their default locations.) @@ -72,10 +73,10 @@ make -j sudo make install ``` -Edit your `~/.bash_profile`/`~/.zsh_profile` (or whichever shell you use) to add the new binutils binaries to the system PATH +Edit your `~/.bash_profile`/`~/.zprofile` (or whichever shell you use) to add the new binutils binaries to the system PATH ```bash -echo "export PATH=$PATH:/opt/cross/bin" >> ~/.bash_profile +echo 'export PATH="$PATH:/opt/cross/bin"' >> ~/.bash_profile ``` Reload ~/.bash_profile (or just launch a new terminal tab) |
