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