You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
736 B
22 lines
736 B
// Check that the clang driver can invoke gcc to compile Fortran.
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux-gnu -integrated-as -c %s -### 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-OBJECT %s
|
|
// CHECK-OBJECT: gcc
|
|
// CHECK-OBJECT: "-c"
|
|
// CHECK-OBJECT: "-x" "f95"
|
|
// CHECK-OBJECT-NOT: cc1as
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux-gnu -integrated-as -S %s -### 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=CHECK-ASM %s
|
|
// CHECK-ASM: gcc
|
|
// CHECK-ASM: "-S"
|
|
// CHECK-ASM: "-x" "f95"
|
|
// CHECK-ASM-NOT: cc1
|
|
|
|
// RUN: %clang -Wall -target x86_64-unknown-linux-gnu -integrated-as %s -o %t -### 2>&1 | FileCheck --check-prefix=CHECK-WARN %s
|
|
// CHECK-WARN: gcc
|
|
// CHECK-WARN-NOT: "-Wall"
|
|
// CHECK-WARN: ld
|
|
// CHECK-WARN-NOT: "-Wall"
|