diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-10-17 20:37:56 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-10-17 20:37:56 +0000 |
commit | fac32f3f6a61f6abfa3794c2693bcd66c962eba2 (patch) | |
tree | b3ba51d875ff4b03879740cced2b5c6dad8f54ca | |
parent | 344546bd6eb58f969b7534b363cc6badfd9b5d8f (diff) | |
download | bcm5719-llvm-fac32f3f6a61f6abfa3794c2693bcd66c962eba2.tar.gz bcm5719-llvm-fac32f3f6a61f6abfa3794c2693bcd66c962eba2.zip |
Explicitly pass an isysroot to avoid the SDKROOT overriding the deployment target.
This fixes the green dragon builders after r284416.
llvm-svn: 284423
-rw-r--r-- | clang/test/CodeGen/dwarf-version.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/clang/test/CodeGen/dwarf-version.c b/clang/test/CodeGen/dwarf-version.c index 03bb3496892..cee0f031e13 100644 --- a/clang/test/CodeGen/dwarf-version.c +++ b/clang/test/CodeGen/dwarf-version.c @@ -4,8 +4,13 @@ // RUN: %clang -target x86_64-linux-gnu -gdwarf-5 -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER5 // RUN: %clang -target x86_64-linux-gnu -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER4 // RUN: %clang -target x86_64-linux-gnu -gdwarf -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER4 -// RUN: %clang -target x86_64-apple-macosx10.11 -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER4 -// RUN: %clang -target x86_64-apple-darwin -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER2 + +// The -isysroot is used as a hack to avoid LIT messing with the SDKROOT +// environment variable which indirecty overrides the version in the target +// triple used here. +// RUN: %clang -target x86_64-apple-macosx10.11 -g -S -emit-llvm -o - %s -isysroot %t | FileCheck %s --check-prefix=VER4 +// RUN: %clang -target x86_64-apple-darwin14 -g -S -emit-llvm -o - %s -isysroot %t | FileCheck %s --check-prefix=VER2 + // RUN: %clang -target powerpc-unknown-openbsd -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER2 // RUN: %clang -target powerpc-unknown-freebsd -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER2 // RUN: %clang -target i386-pc-solaris -g -S -emit-llvm -o - %s | FileCheck %s --check-prefix=VER2 |