diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-07-02 00:51:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-07-02 00:51:03 +0000 |
commit | 37187cc4554d34fbbb5f168041d6acc4be028fe9 (patch) | |
tree | 5a26ad5b0e18410cea742879b130c490fc2b4b4b /lib/Driver/ToolChains.cpp | |
parent | d18eecac712bfbf63372cb78940d662ce9017840 (diff) |
Make the GCC version proliferation worse by N+1 for the sake of
ArchLinux. =/ Fixes PR10246.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134299 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r-- | lib/Driver/ToolChains.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 5eb859446f..b4501acbb1 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1462,7 +1462,7 @@ static std::string findGCCBaseLibDir(const std::string &GccTriple) { ret.append(Version); return ret; } - static const char* GccVersions[] = {"4.6.0", "4.6", + static const char* GccVersions[] = {"4.6.1", "4.6.0", "4.6", "4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4", "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2", "4.3", |