This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MacOS wasn't able to find xcode SDK tools on my machine | |
# I had to manually set the SDKROOT | |
# using bash | |
echo "export SDKROOT=$(xcrun --show-sdk-path)" >> ~/.bashrc | |
# using zsh | |
echo "export SDKROOT=$(xcrun --show-sdk-path)" >> ~/.zshrc |