X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/77cc3118ce7a3a70a0a7364d77ae1eb766a477e7..a645023da60d22e86be13f7b4d97adeff8bc6665:/unit-tests/test-cases/objc-literal-pointers/Makefile diff --git a/unit-tests/test-cases/objc-literal-pointers/Makefile b/unit-tests/test-cases/objc-literal-pointers/Makefile index 9edc357..6596f83 100644 --- a/unit-tests/test-cases/objc-literal-pointers/Makefile +++ b/unit-tests/test-cases/objc-literal-pointers/Makefile @@ -36,10 +36,10 @@ run: all all: ${CC} ${CCFLAGS} test.m -c -o test.o - ObjectDump -no_content test.o | grep -v zero-fill-at> test.dump + ${OBJECTDUMP} -no_content test.o > test.dump - ${LD} -arch ${ARCH} -r test.o -o test-r.o - ObjectDump -no_content test-r.o | grep -v zero-fill-at > test-r.dump + ${LD} -arch ${ARCH} -r test.o -keep_private_externs -o test-r.o + ${OBJECTDUMP} -no_content test-r.o > test-r.dump diff test.dump test-r.dump | ${PASS_IFF_EMPTY}