2012-01-21 06:01:23 +08:00
|
|
|
// RUN: %clang -target i386-apple-darwin10 -### -x assembler -c %s \
|
2011-10-30 08:20:28 +08:00
|
|
|
// RUN: -no-integrated-as -static -dynamic 2>%t
|
2009-11-08 09:45:36 +08:00
|
|
|
// RUN: FileCheck -check-prefix=STATIC_AND_DYNAMIC-32 --input-file %t %s
|
2010-07-22 09:47:22 +08:00
|
|
|
//
|
2009-10-09 06:25:29 +08:00
|
|
|
// CHECK-STATIC_AND_DYNAMIC-32: as{{(.exe)?}}" "-arch" "i386" "-force_cpusubtype_ALL" "-static" "-o"
|
2009-08-25 06:26:16 +08:00
|
|
|
|
2012-01-21 06:01:23 +08:00
|
|
|
// RUN: %clang -target x86_64-apple-darwin10 -### -x assembler -c %s \
|
2011-10-30 08:20:28 +08:00
|
|
|
// RUN: -no-integrated-as -static 2>%t
|
2009-08-25 06:26:16 +08:00
|
|
|
// RUN: FileCheck -check-prefix=STATIC-64 --input-file %t %s
|
2010-07-22 09:47:22 +08:00
|
|
|
//
|
2009-10-09 06:25:29 +08:00
|
|
|
// CHECK-STATIC-64: as{{(.exe)?}}" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o"
|
2009-08-25 06:26:16 +08:00
|
|
|
|
2012-01-21 06:01:23 +08:00
|
|
|
// RUN: %clang -target x86_64-apple-darwin10 -### \
|
2012-02-24 06:12:53 +08:00
|
|
|
// RUN: -arch armv6 -no-integrated-as -x assembler -c %s 2>%t
|
2010-07-22 09:47:22 +08:00
|
|
|
// RUN: FileCheck -check-prefix=ARMV6 --input-file %t %s
|
|
|
|
//
|
|
|
|
// CHECK-ARMV6: as{{(.exe)?}}" "-arch" "armv6" "-o"
|