aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-22 01:06:46 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-22 01:06:46 +0000
commite7925a075f110ab21afeae084670a155dea568e3 (patch)
treea9a9909dc83dd3df826c846415a844c04e3eddf9 /lib/Driver/Driver.cpp
parentd83d04041f64a2c89123d227fa8003b482391279 (diff)
Second half of, clang, AuroraUX toolchain support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r--lib/Driver/Driver.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp
index 8adeb02b90..5743a53a97 100644
--- a/lib/Driver/Driver.cpp
+++ b/lib/Driver/Driver.cpp
@@ -1248,6 +1248,8 @@ const HostInfo *Driver::GetHostInfo(const char *TripleStr) const {
Triple.setArchName("powerpc64");
switch (Triple.getOS()) {
+ case llvm::Triple::AuroraUX:
+ return createAuroraUXHostInfo(*this, Triple);
case llvm::Triple::Darwin:
return createDarwinHostInfo(*this, Triple);
case llvm::Triple::DragonFly: