Xcode 4.1 Dmg

There are a few reasons that one might want to download Xcode outside of the app store. You might want to share it with team members, you might need an older version. How to download XCode 4.1. I'm a registered developer in apple. I have installed OSX Lion and i want to install XCode but i can download only viersion 4.0.2 which is incompatible for Lion.

Xcode 历史版本下载

Xcode can also be downloaded as a XIP file (.xip extension), and some versions of Xcode can be downloaded as DMG (.dmg disk image file extension) as well. To download Xcode as a.xip or.dmg this way, you must have a valid Apple Developer login, but it does not need to be a paid developer account to simply access the Xcode downloads. All downloads are hosted by Apple. Links on this site take you directly to Apple’s download pages. This is not an official Apple website. Please consider donating to help maintain it.

Download
### 包括 Xcode 5.1 以上的版本
Xcode 8.1 http://adcdownload.apple.com/Developer_Tools/Xcode_8.1/Xcode_8.1.xip
Xcode 8.0 http://adcdownload.apple.com/Developer_Tools/Xcode_8/Xcode_8.xip
Xcode 7.3.1 http://adcdownload.apple.com/Developer_Tools/Xcode_7.3.1/Xcode_7.3.1.dmg
Xcode 7.3 http://adcdownload.apple.com/Developer_Tools/Xcode_7.3/Xcode_7.3.dmg
Xcode 7.2.1 http://adcdownload.apple.com/Developer_Tools/Xcode_7.2.1/Xcode_7.2.1.dmg
Xcode 7.2 http://adcdownload.apple.com/Developer_Tools/Xcode_7.2/Xcode_7.2.dmg
Xcode 7.1.1 http://adcdownload.apple.com/Developer_Tools/Xcode_7.1.1/Xcode_7.1.1.dmg
Xcode 7.1 http://adcdownload.apple.com/Developer_Tools/Xcode_7.1/Xcode_7.1.dmg
Xcode 7.0.1 http://adcdownload.apple.com/Developer_Tools/Xcode_7.0.1/Xcode_7.0.1.dmg
Xcode 7.0 http://adcdownload.apple.com/Developer_Tools/Xcode_7/Xcode_7.dmg
Xcode 6.4 http://adcdownload.apple.com/Developer_Tools/Xcode_6.4/Xcode_6.4.dmg
Xcode 6.3.2 http://adcdownload.apple.com/Developer_Tools/Xcode_6.3.2/Xcode_6.3.2.dmg
Xcode 6.4.1 http://adcdownload.apple.com/Developer_Tools/Xcode_6.3.1/Xcode_6.3.1.dmg
Xcode 6.3 http://adcdownload.apple.com/Developer_Tools/Xcode_6.3/Xcode_6.3.dmg
Xcode 6.2 http://adcdownload.apple.com/Developer_Tools/Xcode_6.2/Xcode_6.2.dmg
Xcode 6.1.1 http://adcdownload.apple.com/Developer_Tools/xcode_6.1.1/xcode_6.1.1.dmg
Xocde 6.1 http://adcdownload.apple.com/Developer_Tools/xcode_6.1/56841_xcode_6.1.dmg
Xcode 6.0.1 http://adcdownload.apple.com/Developer_Tools/xcode_6.0.1/xcode_6.0.1.dmg
Xcode 5.1.1 http://adcdownload.apple.com/Developer_Tools/xcode_5.1.1/xcode_5.1.1.dmg
Xcode 5.1 http://adcdownload.apple.com/Developer_Tools/xcode_5.1/xcode_5.1.dmg

Xcode 4.1 Download Dmg

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Xcode 4.1 Dmg File

Script to extract components of Xcode 4.1 required to build VirtualBox on a OSX 10.9 system.
extract-xcode41.sh
#!/usr/bin/env bash
#
# NAME
# extract-xcode41.sh
#
# DESCRIPTION
# 1. Copy this file into the same directory that contains installxcode_41_lion.dmg downloaded from Apple
# 2. Change into that directory
# 3. Run the file
# ./extract-xcode41.sh
# 4. Add --with-xcode-dir=$(pwd)/xcode41-partial to arguments of the ./configure command used to configure the VirtualBox build
#
DMG=${DMG:-installxcode_41_lion.dmg}
MNT=${MNT:-$(pwd)/mnt}
UNPACK=${UNPACK:-$(pwd)/unpack}
IMAGE=${IMAGE:-$(pwd)/xcode41-partial}
PACKAGES='DevSDK.pkg MacOSX10.6.pkg MacOSX10.7.pkg XcodeTools.pkg llvm-gcc4.2.pkg gcc4.2.pkg DeveloperTools.pkg'
die()
{
echo'fatal: $*'1>&2
exit 1
}
main()
{
cat 1>&2<<EOF
DMG=$DMG
MNT=$MNT
UNPACK=$UNPACK
IMAGE=$IMAGE
EOF
test -f '$DMG'|| die 'DMG=$DMG does not exist'
mkdir -p '${MNT}'&&
mkdir -p '${UNPACK}'&&
mkdir -p '${IMAGE}/Developer/usr/share/man/man3'&&
hdiutil mount '${DMG}' -mountpoint '${MNT}'&&
cd'${UNPACK}'&&
xar -xf '${MNT}/InstallXcodeLion.pkg'&&
mkdir -p InstallXcodeLion.pkg/Payload.cpio &&
cd InstallXcodeLion.pkg/Payload.cpio &&
gzip -dc ../Payload | cpio -id &&
cd'Applications/Install Xcode.app/Contents/Resources/Packages'&&
forpin$PACKAGES
do
local u='$(basename '$p' .pkg).unpkg'
mkdir -p '$u'&& (
cd'$u'
xar -xf '../$p'
gzip -dc Payload | (cd '${IMAGE}/Developer'; cpio -id)
)
done&&
rm -rf '${UNPACK}'&&
hdiutil detach '${MNT}'&&
rmdir '${MNT}'&&
echo'Successfully extracted parts of Xcode 4.1 required to build VirtualBox into '${IMAGE}'. Add --with-xcode-dir=${IMAGE} to ./configure arguments.'
}
cmd=${1:-main}
shift 1
$cmd'$@'
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment