Home | History | Annotate | Download | only in Driver
      1 // RUN: %clang -target i386-apple-darwin10 -### -x assembler -c %s \
      2 // RUN:   -no-integrated-as -static -dynamic 2>%t
      3 // RUN: FileCheck -check-prefix=STATIC_AND_DYNAMIC-32 --input-file %t %s
      4 //
      5 // CHECK-STATIC_AND_DYNAMIC-32: as{{(.exe)?}}" "-arch" "i386" "-force_cpusubtype_ALL" "-static" "-o"
      6 
      7 // RUN: %clang -target x86_64-apple-darwin10 -### -x assembler -c %s \
      8 // RUN:   -no-integrated-as -static 2>%t
      9 // RUN: FileCheck -check-prefix=STATIC-64 --input-file %t %s
     10 //
     11 // CHECK-STATIC-64: as{{(.exe)?}}" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o"
     12 
     13 // RUN: %clang -target x86_64-apple-darwin10 -### \
     14 // RUN:   -arch armv6 -no-integrated-as -x assembler -c %s 2>%t
     15 // RUN: FileCheck -check-prefix=ARMV6 --input-file %t %s
     16 //
     17 // CHECK-ARMV6: as{{(.exe)?}}" "-arch" "armv6" "-o"
     18