[LLVMbugs] [Bug 10246] New: Adding new gcc version in ToolChains

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Fri Jul 1 17:42:11 PDT 2011


http://llvm.org/bugs/show_bug.cgi?id=10246

           Summary: Adding new gcc version in ToolChains
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Driver
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: oroppas at gmail.com
                CC: llvmbugs at cs.uiuc.edu


GCC version on ArchLinux is bumped up to 4.6.1.
The following patch suffices to keep it compatible.


Index: lib/Driver/ToolChains.cpp
===================================================================
--- lib/Driver/ToolChains.cpp    (revision 134295)
+++ lib/Driver/ToolChains.cpp    (working copy)
@@ -1462,7 +1462,7 @@
     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",

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list