forked from OSchip/llvm-project
[Orc] Disable Orc C API unit tests on non-Darwin while I investigate more
builder failures. llvm-svn: 251484
This commit is contained in:
parent
130a7c4152
commit
310a5bacb2
|
@ -46,7 +46,7 @@ public:
|
|||
|
||||
const Triple& TT = TM->getTargetTriple();
|
||||
|
||||
if (TT.getArch() == Triple::x86_64)
|
||||
if (TT.getArch() == Triple::x86_64 && TT.isOSDarwin())
|
||||
return std::move(TM);
|
||||
|
||||
return nullptr;
|
||||
|
|
Loading…
Reference in New Issue