Skip to content

Instantly share code, notes, and snippets.

@mlavergn
Last active April 8, 2020 17:47
Show Gist options
  • Save mlavergn/dc82acac9902ad647939356585b8c51f to your computer and use it in GitHub Desktop.
Save mlavergn/dc82acac9902ad647939356585b8c51f to your computer and use it in GitHub Desktop.
Xcode add support for newer iOS target to an older XC release
#
# pseudo-script on adding support for a new iOS ver to an older Xcode
#
XCNEW="Xcode-113-11C505.app"
XCOLD="Xcode-110-11A420a.app"
IOSVER="13.3"
# rm -r /Applications/$XCOLD/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/$IOSVER
# cp -R /Applications/$XCNEW/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/$IOSVER /Applications/$XCOLD/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
ln -s /Applications/$XCNEW/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/$IOSVER /Applications/$XCOLD/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment