]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/objc-literal-pointers/Makefile
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / objc-literal-pointers / Makefile
old mode 100755 (executable)
new mode 100644 (file)
index 9edc357..6596f83
@@ -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}