From 61961fb938fa2ff9a6b2391be09ad19d46b7b3d5 Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Fri, 21 Feb 2025 18:02:19 -0800 Subject: 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 --- docs/BUILDING_MACOS.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'docs') 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) -- cgit v1.2.3