Logo

iOS & macOS Tools Archives

Complete archive of Xcode and Command Line Tools. Direct links to official Apple Developer downloads for CI/CD setup or legacy app maintenance.

Authentication Required: Apple requires an active session. Please log in to developer.apple.com in your browser before clicking any download links.

Xcode Archives

IDE for iOS, macOS, watchOS, and tvOS

VersionmacOS RequirementFile SizeAction
Xcode 15.3LatestmacOS 14.0+7.41 GBDownload .xip
Xcode 15.2macOS 13.5+7.39 GBDownload .xip
Xcode 15.0.1macOS 13.5+7.17 GBDownload .xip
Xcode 14.3.1macOS 13.0+7.16 GBDownload .xip
Xcode 14.2macOS 12.5+7.27 GBDownload .xip
Xcode 14.1macOS 12.5+7.24 GBDownload .xip
Xcode 13.4.1macOS 12.0+10.05 GBDownload .xip
Xcode 12.5.1macOS 11.0+11.17 GBDownload .xip
Xcode 11.7macOS 10.15.2+8.06 GBDownload .xip

Command Line Tools

Essential compilers and tools without full Xcode

VersionTarget PlatformAction
Command Line Tools for Xcode 15.3macOS 14.0Download .dmg
Command Line Tools for Xcode 15.0macOS 13.0Download .dmg
Command Line Tools for Xcode 14.3.1macOS 13.0Download .dmg
Command Line Tools for Xcode 14.2macOS 12.5Download .dmg
Command Line Tools for Xcode 13.4macOS 12.0Download .dmg

Xcode Setup Guide

Multiple Xcode Versions

If you extract multiple Xcode versions (e.g., to /Applications), you must switch the active developer directory:

# Check current path
xcode-select -p
# Switch to a specific version
sudo xcode-select -s /Applications/Xcode_14.3.1.app/Contents/Developer

You must accept the license agreement after switching:

sudo xcodebuild -license accept

Command Line Tools Network Install

If you don't want to download the DMG, you can trigger the network installer for the CLI tools:

# Trigger installation dialog
xcode-select --install
# Verify installation
clang --version
git --version

Note: This will download the default tools compatible with your current macOS version.