Skip to content

Instantly share code, notes, and snippets.

@patrickeddy
Last active February 28, 2024 01:38
Show Gist options
  • Save patrickeddy/7532ab4358ac340c4f5df8c9fe1a6b29 to your computer and use it in GitHub Desktop.
Save patrickeddy/7532ab4358ac340c4f5df8c9fe1a6b29 to your computer and use it in GitHub Desktop.
npx expo run:ios build failure fix MacOS
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment