]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/cpu-sub-types/Makefile
ld64-77.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cpu-sub-types / Makefile
CommitLineData
a61fdf0a
A
1##
2# Copyright (c) 2007 Apple Inc. All rights reserved.
3#
4# @APPLE_LICENSE_HEADER_START@
5#
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
11# file.
12#
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.
20#
21# @APPLE_LICENSE_HEADER_END@
22##
23TESTROOT = ../..
24include ${TESTROOT}/include/common.makefile
25
26#
27# The point of this test is validate cpu subtypes processing
28#
29
30test: test-${ARCH}
31
32test-ppc64:
33 ${PASS_IFF} true
34
35test-i386:
36 ${PASS_IFF} true
37
38test-x86_64:
39 ${PASS_IFF} true
40
41test-ppc:
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
54
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}
59
60 # check G3+ALL -> G3
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}
64
65 # check G4+ALL -> G4
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}
69
70 # check G5+ALL -> G5
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}
74
75 # check G5+G4 -> G5
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}
79
80 # check G4+G5 -> G5
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}
84
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}
89
90clean:
91 rm -f *.o