Adjust JIT target triple on OS X to match the current architecture.
authorBob Wilson <bob.wilson@apple.com>
Wed, 5 Dec 2012 19:09:13 +0000 (19:09 +0000)
committerBob Wilson <bob.wilson@apple.com>
Wed, 5 Dec 2012 19:09:13 +0000 (19:09 +0000)
For OS X builds, we generate one version of config.h but then build for
multiple architectures.  This means that the LLVM_HOSTTRIPLE setting may have
the wrong architecture.  Adjust it dynamically to match the current
architecture.  <rdar://problem/12715470>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169405 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/TargetSelect.cpp

index f33cc54c7c38309ec60e6c813b1dc52a96d22808..4e52a98c332bf9a254eaa5b20db534c48acf4937 100644 (file)
@@ -32,8 +32,18 @@ TargetMachine *EngineBuilder::selectTarget() {
   // must use the host architecture.
   if (UseMCJIT && WhichEngine != EngineKind::Interpreter && M)
     TT.setTriple(M->getTargetTriple());
-  else
+  else {
     TT.setTriple(LLVM_HOSTTRIPLE);
+#if defined(__APPLE__)
+#if defined(__LP64__)
+    if (TT.isArch32Bit())
+      TT = TT.get64BitArchVariant();
+#else
+    if (TT.isArch64Bit())
+      TT = TT.get32BitArchVariant();
+#endif
+#endif // APPLE
+  }
   return selectTarget(TT, MArch, MCPU, MAttrs);
 }