1 // RUN: %clang %s -target x86_64-apple-driverkit19.0 \
2 // RUN: -isysroot %S/Inputs/DriverKit19.0.sdk -### 2>&1 \
3 // RUN: | FileCheck %s -check-prefix=CHECK-DEFAULT
4
5 // RUN: %clang %s -target x86_64-apple-driverkit19.0 -nodriverkitlib \
6 // RUN: -isysroot %S/Inputs/DriverKit19.0.sdk -### 2>&1 \
7 // RUN: | FileCheck %s -check-prefix=CHECK-NO-DRIVERKIT
8
main()9 int main() { return 0; }
10
11 // CHECK-DEFAULT: "-framework" "DriverKit"
12
13 // CHECK-NO-DRIVERKIT-NOT: "-framework" "DriverKit"
14