diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-07 16:01:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-07 16:01:42 +0000 |
commit | 38e317d6dce161b249508686cc67eb7176958762 (patch) | |
tree | 2f98faa41ffd03996bbcdf97335ae57e618e2fcf /lib/Driver/Driver.cpp | |
parent | d2bb2c0942d7db565b0f29a8d1640bb97d781cae (diff) |
add driver support for minix, patch by Kees van Reeuwijk
from PR7583
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 200e43842c..5da7908434 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -1298,6 +1298,8 @@ const HostInfo *Driver::GetHostInfo(const char *TripleStr) const { return createOpenBSDHostInfo(*this, Triple); case llvm::Triple::FreeBSD: return createFreeBSDHostInfo(*this, Triple); + case llvm::Triple::Minix: + return createMinixHostInfo(*this, Triple); case llvm::Triple::Linux: return createLinuxHostInfo(*this, Triple); default: |