Bug 838384 - mozboot bootstrap.py does not recognize newer Xcode's clang. r=gps

This commit is contained in:
Gary Kwong 2013-02-05 16:59:01 -08:00
parent 8c26aedcce
commit bec42bf2d7

View File

@ -20,7 +20,7 @@ XCODE_APP_STORE = 'macappstore://itunes.apple.com/app/id497799835?mt=12'
XCODE_LEGACY = 'https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_3.2.6_and_ios_sdk_4.3__final/xcode_3.2.6_and_ios_sdk_4.3.dmg'
HOMEBREW_AUTOCONF213 = 'https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb'
RE_CLANG_VERSION = re.compile('Apple clang version (\d+\.\d+)')
RE_CLANG_VERSION = re.compile('Apple (?:clang|LLVM) version (\d+\.\d+)')
APPLE_CLANG_MINIMUM_VERSION = StrictVersion('4.0')