mgorny retitled this revision from "[ToolChains] Disable OpenSUSE rules for SLES10" to "[Driver] Disable OpenSUSE rules for OpenSUSE/SLES 10 and older". mgorny updated the summary for this revision. mgorny updated this revision to Diff 75357.
https://reviews.llvm.org/D24954 Files: lib/Driver/ToolChains.cpp Index: lib/Driver/ToolChains.cpp =================================================================== --- lib/Driver/ToolChains.cpp +++ lib/Driver/ToolChains.cpp @@ -3931,8 +3931,26 @@ .Default(UnknownDistro); } - if (VFS.exists("/etc/SuSE-release")) - return OpenSUSE; + File = VFS.getBufferForFile("/etc/SuSE-release"); + if (File) { + StringRef Data = File.get()->getBuffer(); + SmallVector<StringRef, 16> Lines; + Data.split(Lines, "\n"); + for (const StringRef& Line : Lines) { + std::pair<StringRef, StringRef> SplitLine = Line.split('='); + int Version; + if (SplitLine.first.trim() == "VERSION" && + !SplitLine.second.trim().getAsInteger(10, Version)) { + // OpenSUSE/SLES 10 and older are not supported and not compatible + // with our rules, so just treat them as UnknownDistro. + if (Version > 10) + return OpenSUSE; + else + return UnknownDistro; + } + } + return UnknownDistro; + } if (VFS.exists("/etc/exherbo-release")) return Exherbo;
Index: lib/Driver/ToolChains.cpp =================================================================== --- lib/Driver/ToolChains.cpp +++ lib/Driver/ToolChains.cpp @@ -3931,8 +3931,26 @@ .Default(UnknownDistro); } - if (VFS.exists("/etc/SuSE-release")) - return OpenSUSE; + File = VFS.getBufferForFile("/etc/SuSE-release"); + if (File) { + StringRef Data = File.get()->getBuffer(); + SmallVector<StringRef, 16> Lines; + Data.split(Lines, "\n"); + for (const StringRef& Line : Lines) { + std::pair<StringRef, StringRef> SplitLine = Line.split('='); + int Version; + if (SplitLine.first.trim() == "VERSION" && + !SplitLine.second.trim().getAsInteger(10, Version)) { + // OpenSUSE/SLES 10 and older are not supported and not compatible + // with our rules, so just treat them as UnknownDistro. + if (Version > 10) + return OpenSUSE; + else + return UnknownDistro; + } + } + return UnknownDistro; + } if (VFS.exists("/etc/exherbo-release")) return Exherbo;
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits