forked from OSchip/llvm-project
parent
24a3724b04
commit
14814d4477
|
@ -53,7 +53,8 @@ public:
|
||||||
Darwin,
|
Darwin,
|
||||||
DragonFly,
|
DragonFly,
|
||||||
FreeBSD,
|
FreeBSD,
|
||||||
Linux
|
Linux,
|
||||||
|
OpenBSD
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -48,6 +48,7 @@ const char *Triple::getOSTypeName(OSType Kind) {
|
||||||
case DragonFly: return "dragonfly";
|
case DragonFly: return "dragonfly";
|
||||||
case FreeBSD: return "freebsd";
|
case FreeBSD: return "freebsd";
|
||||||
case Linux: return "linux";
|
case Linux: return "linux";
|
||||||
|
case OpenBSD: return "openbsd";
|
||||||
}
|
}
|
||||||
|
|
||||||
return "<invalid>";
|
return "<invalid>";
|
||||||
|
@ -90,6 +91,8 @@ void Triple::Parse() const {
|
||||||
OS = FreeBSD;
|
OS = FreeBSD;
|
||||||
else if (memcmp(&OSName[0], "linux", 5) == 0)
|
else if (memcmp(&OSName[0], "linux", 5) == 0)
|
||||||
OS = Linux;
|
OS = Linux;
|
||||||
|
else if (memcmp(&OSName[0], "openbsd", 7) == 0)
|
||||||
|
OS = OpenBSD;
|
||||||
else
|
else
|
||||||
OS = UnknownOS;
|
OS = UnknownOS;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue