diff options
author | Gabor Greif <ggreif@gmail.com> | 2019-12-22 09:36:53 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2019-12-22 09:46:27 +0100 |
commit | 1c302c6289a6eddc92b48815dd420bd58eb2f286 (patch) | |
tree | b2f4e71a1391f84d4a40977598ccbcb5ca0c818a /compiler | |
parent | 78ce1b412e300f1fde0781d0b3cc912e4e56b543 (diff) | |
download | haskell-wip/xcode-dialog.tar.gz |
while at it rename XCode to the official Xcodewip/xcode-dialog
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/SysTools/Info.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/main/SysTools/Info.hs b/compiler/main/SysTools/Info.hs index e61846d4e6..93c2819528 100644 --- a/compiler/main/SysTools/Info.hs +++ b/compiler/main/SysTools/Info.hs @@ -231,13 +231,13 @@ getCompilerInfo' dflags = do -- FreeBSD clang | any ("FreeBSD clang version" `isInfixOf`) stde = return Clang - -- XCode 5.1 clang + -- Xcode 5.1 clang | any ("Apple LLVM version 5.1" `isPrefixOf`) stde = return AppleClang51 - -- XCode 5 clang + -- Xcode 5 clang | any ("Apple LLVM version" `isPrefixOf`) stde = return AppleClang - -- XCode 4.1 clang + -- Xcode 4.1 clang | any ("Apple clang version" `isPrefixOf`) stde = return AppleClang -- Unknown linker. |