Lines Matching defs:Version
12 #include "clang/Basic/Version.h"
58 // Compute the initial Darwin version from the triple
72 // Compute the initial iOS version from the triple
495 // If no '-miphoneos-version-min' specified on the command line and
894 // Add an explicit version min argument for the deployment target. We do this
895 // after argument translation because -Xarch_ arguments may add a version min
1184 /// necessary because the driver doesn't store the final version of the target
1227 // installation available. GCC installs are ranked by version number.
1228 Version = GCCVersion::Parse("0.0.0");
1980 if (CandidateVersion <= Version)
1998 Version = CandidateVersion;
2184 // Determine version of GCC libraries and headers to use.
2276 // FIXME: produce errors if we cannot parse the version.
2299 llvm_unreachable("Unexpected version");
2915 Distro Version = UnknownDistro;
2917 if (Version == UnknownDistro && Lines[i].startswith("DISTRIB_CODENAME="))
2918 Version = llvm::StringSwitch<Distro>(Lines[i].substr(17))
2935 return Version;
3199 // <prefix>/<libdir>/gcc/<triple>/<version>. This decision is somewhat
3381 // in use in any released version of Debian, so we should consider
3389 // in use in any released version of Debian, so we should consider
3552 const GCCVersion &Version = GCCInstallation.getVersion();
3556 "/c++/" + Version.Text, TripleStr, GCCMultiarchTriple,
3566 InstallDir.str() + "/include/g++-v" + Version.MajorStr + "." +
3567 Version.MinorStr,
3568 InstallDir.str() + "/include/g++-v" + Version.MajorStr,
3570 LibDir.str() + "/../" + TripleStr.str() + "/include/c++/" + Version.Text,
3572 // without a subdirectory corresponding to the gcc version.