[PATCH] Rename LinuxDistro to Distro.
Rafael EspĂndola
rafael.espindola at gmail.com
Mon Mar 25 10:58:20 PDT 2013
LGTM
On 25 March 2013 09:13, Thomas Schwinge <thomas at codesourcery.com> wrote:
> The concept of such a software distribution is not tied to the Linux kernel;
> for example Debian GNU/Linux, Debian GNU/Hurd, and Debian GNU/kFreeBSD all
> share the same source packages and generally the same user-space configuration.
> ---
> lib/Driver/ToolChains.cpp | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git lib/Driver/ToolChains.cpp lib/Driver/ToolChains.cpp
> index 4afb416..eec3845 100644
> --- lib/Driver/ToolChains.cpp
> +++ lib/Driver/ToolChains.cpp
> @@ -1837,9 +1837,9 @@ Tool *Solaris::buildLinker() const {
> return new tools::solaris::Link(*this);
> }
>
> -/// Linux toolchain (very bare-bones at the moment).
> +/// Distribution (very bare-bones at the moment).
>
> -enum LinuxDistro {
> +enum Distro {
> ArchLinux,
> DebianLenny,
> DebianSqueeze,
> @@ -1872,33 +1872,33 @@ enum LinuxDistro {
> UnknownDistro
> };
>
> -static bool IsRedhat(enum LinuxDistro Distro) {
> +static bool IsRedhat(enum Distro Distro) {
> return (Distro >= Fedora13 && Distro <= FedoraRawhide) ||
> (Distro >= RHEL4 && Distro <= RHEL6);
> }
>
> -static bool IsOpenSuse(enum LinuxDistro Distro) {
> +static bool IsOpenSuse(enum Distro Distro) {
> return Distro >= OpenSuse11_3 && Distro <= OpenSuse12_2;
> }
>
> -static bool IsDebian(enum LinuxDistro Distro) {
> +static bool IsDebian(enum Distro Distro) {
> return Distro >= DebianLenny && Distro <= DebianJessie;
> }
>
> -static bool IsUbuntu(enum LinuxDistro Distro) {
> +static bool IsUbuntu(enum Distro Distro) {
> return Distro >= UbuntuHardy && Distro <= UbuntuRaring;
> }
>
> -static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
> +static Distro DetectDistro(llvm::Triple::ArchType Arch) {
> OwningPtr<llvm::MemoryBuffer> File;
> if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
> StringRef Data = File.get()->getBuffer();
> SmallVector<StringRef, 8> Lines;
> Data.split(Lines, "\n");
> - LinuxDistro Version = UnknownDistro;
> + Distro Version = UnknownDistro;
> for (unsigned i = 0, s = Lines.size(); i != s; ++i)
> if (Version == UnknownDistro && Lines[i].startswith("DISTRIB_CODENAME="))
> - Version = llvm::StringSwitch<LinuxDistro>(Lines[i].substr(17))
> + Version = llvm::StringSwitch<Distro>(Lines[i].substr(17))
> .Case("hardy", UbuntuHardy)
> .Case("intrepid", UbuntuIntrepid)
> .Case("jaunty", UbuntuJaunty)
> @@ -1955,7 +1955,7 @@ static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
> }
>
> if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File))
> - return llvm::StringSwitch<LinuxDistro>(File.get()->getBuffer())
> + return llvm::StringSwitch<Distro>(File.get()->getBuffer())
> .StartsWith("openSUSE 11.3", OpenSuse11_3)
> .StartsWith("openSUSE 11.4", OpenSuse11_4)
> .StartsWith("openSUSE 12.1", OpenSuse12_1)
> @@ -2089,7 +2089,7 @@ Linux::Linux(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
>
> Linker = GetProgramPath("ld");
>
> - LinuxDistro Distro = DetectLinuxDistro(Arch);
> + Distro Distro = DetectDistro(Arch);
>
> if (IsOpenSuse(Distro) || IsUbuntu(Distro)) {
> ExtraOpts.push_back("-z");
> --
> 1.7.9.5
>
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
More information about the cfe-commits
mailing list