14 lines · c
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-DEFAULT4 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-DRIVERKIT8 9int main() { return 0; }10 11// CHECK-DEFAULT: "-framework" "DriverKit"12 13// CHECK-NO-DRIVERKIT-NOT: "-framework" "DriverKit"14