2 # Copyright (c) 2007 Apple Inc. All rights reserved.
4 # @APPLE_LICENSE_HEADER_START@
6 # This file contains Original Code and/or Modifications of Original Code
7 # as defined in and that are subject to the Apple Public Source License
8 # Version 2.0 (the 'License'). You may not use this file except in
9 # compliance with the License. Please obtain a copy of the License at
10 # http://www.opensource.apple.com/apsl/ and read it before using this
13 # The Original Code and all software distributed under the License are
14 # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 # Please see the License for the specific language governing rights and
19 # limitations under the License.
21 # @APPLE_LICENSE_HEADER_END@
24 include ${TESTROOT}/include/common.makefile
27 # The point of this test is validate cpu subtypes processing
42 gcc foo.c -arch ppc -mmacosx-version-min=10.4 -c -o foo.o
43 ${FAIL_IF_BAD_OBJ} foo.o
44 gcc foo.c -arch ppc750 -mmacosx-version-min=10.4 -c -o foo-G3.o
45 ${FAIL_IF_BAD_OBJ} foo-G3.o
46 gcc foo.c -arch ppc7400 -mmacosx-version-min=10.4 -c -o foo-G4.o
47 ${FAIL_IF_BAD_OBJ} foo-G4.o
48 gcc foo.c -arch ppc970 -mmacosx-version-min=10.4 -c -o foo-G5.o
49 ${FAIL_IF_BAD_OBJ} foo-G5.o
50 gcc main.c -arch ppc -mmacosx-version-min=10.4 -c -o main.o
51 ${FAIL_IF_BAD_OBJ} main.o
52 gcc main.c -arch ppc970 -mmacosx-version-min=10.4 -c -o main-G5.o
53 ${FAIL_IF_BAD_OBJ} main-G5.o
55 # check ALL+ALL -> ALL
56 ${LD} -r main.o foo.o -o main-r.o
57 ${FAIL_IF_BAD_OBJ} main-r.o
58 otool -hv main-r.o | grep ALL | ${FAIL_IF_EMPTY}
61 ${LD} -r main.o foo-G3.o -o main-r.o
62 ${FAIL_IF_BAD_OBJ} main-r.o
63 otool -hv main-r.o | grep ppc750 | ${FAIL_IF_EMPTY}
66 ${LD} -r main.o foo-G4.o -o main-r.o
67 ${FAIL_IF_BAD_OBJ} main-r.o
68 otool -hv main-r.o | grep ppc7400 | ${FAIL_IF_EMPTY}
71 ${LD} -r main.o foo-G5.o -o main-r.o
72 ${FAIL_IF_BAD_OBJ} main-r.o
73 otool -hv main-r.o | grep ppc970 | ${FAIL_IF_EMPTY}
76 ${LD} -r main-G5.o foo-G4.o -o main-r.o
77 ${FAIL_IF_BAD_OBJ} main-r.o
78 otool -hv main-r.o | grep ppc970 | ${FAIL_IF_EMPTY}
81 ${LD} -r foo-G4.o main-G5.o -o main-r.o
82 ${FAIL_IF_BAD_OBJ} main-r.o
83 otool -hv main-r.o | grep ppc970 | ${FAIL_IF_EMPTY}
85 # check -force_cpusubtype_ALL
86 ${LD} -r main.o foo-G5.o -o main-r.o -force_cpusubtype_ALL
87 ${FAIL_IF_BAD_OBJ} main-r.o
88 otool -hv main-r.o | grep ALL | ${PASS_IFF_STDIN}