all:
${CC} ${CCFLAGS} -g test.m -c -o test.o
- libtool -static test.o -o libtest.a
+ ${CC} ${CCFLAGS} -g test2.m -c -o test2.o
+ libtool -static test.o test2.o -o libtest.a
${CC} ${CCFLAGS} main.m libtest.a -ObjC -o main -framework Foundation
nm main | grep mycatmethod1 | ${FAIL_IF_EMPTY}
nm main | grep mycatmethod2 | ${FAIL_IF_EMPTY}
- ${LD} -arch ${ARCH} -r -S -keep_private_externs test.o -o test-stripped.o
+ nm main | grep mymethod2 | ${FAIL_IF_EMPTY}
+ ${LD} -arch ${ARCH} -r -S -keep_private_externs test.o test2.o -o test-stripped.o
libtool -static test-stripped.o -o libtest-stripped.a
${CC} ${CCFLAGS} main.m libtest-stripped.a -all_load -dead_strip -o main2 -framework Foundation
nm main2 | grep mycatmethod1 | ${FAIL_IF_EMPTY}
nm main2 | grep mycatmethod2 | ${FAIL_IF_EMPTY}
+ nm main2 | grep mymethod2 | ${FAIL_IF_EMPTY}
${PASS_IFF_GOOD_MACHO} main2
clean:
- rm -rf test.o test-stripped.o libtest.a libtest-stripped.a main main2
+ rm -rf test.o test2.o test-stripped.o libtest.a libtest-stripped.a main main2