3 include ${TESTROOT}/include/common.makefile
7 # Verify -ObjC works with x86_64 categories
8 # Verify stripped archives keep don't-strip bit
14 ${CC} ${CCFLAGS} -g test.m -c -o test.o
15 ${CC} ${CCFLAGS} -g test2.m -c -o test2.o
16 libtool -static test.o test2.o -o libtest.a
17 ${CC} ${CCFLAGS} main.m libtest.a -ObjC -o main -framework Foundation
18 nm main | grep mycatmethod1 | ${FAIL_IF_EMPTY}
19 nm main | grep mycatmethod2 | ${FAIL_IF_EMPTY}
20 nm main | grep mymethod2 | ${FAIL_IF_EMPTY}
21 ${LD} -arch ${ARCH} -r -S -keep_private_externs test.o test2.o -o test-stripped.o
22 libtool -static test-stripped.o -o libtest-stripped.a
23 ${CC} ${CCFLAGS} main.m libtest-stripped.a -all_load -dead_strip -o main2 -framework Foundation
24 nm main2 | grep mycatmethod1 | ${FAIL_IF_EMPTY}
25 nm main2 | grep mycatmethod2 | ${FAIL_IF_EMPTY}
26 nm main2 | grep mymethod2 | ${FAIL_IF_EMPTY}
27 ${PASS_IFF_GOOD_MACHO} main2
30 rm -rf test.o test2.o test-stripped.o libtest.a libtest-stripped.a main main2