]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/no-object-symbols/Makefile
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / no-object-symbols / Makefile
index b2135116178d5c0646e75e48691ba28edd6423a1..8b49b1b1024964aba6312e802854d73102660da5 100644 (file)
@@ -34,12 +34,12 @@ include ${TESTROOT}/include/common.makefile
 run: all
 
 all:
-       as -arch ${ARCH} -n empty.s -o empty.o
+       ${CC} -arch ${ARCH} -c empty.s -o empty.o
        ${LD} -r empty.o -x -o empty2.o
-       otool -lv empty2.o | egrep 'vmsize 0x0[0]+$$' | ${FAIL_IF_EMPTY}
-       otool -lv empty2.o | grep 'filesize 0' | ${FAIL_IF_EMPTY}
-       otool -lv empty2.o | grep 'nsyms 0' | ${FAIL_IF_EMPTY}
-       otool -lv empty2.o | grep 'symoff 0' | ${FAIL_IF_EMPTY}
+       ${OTOOL} -lv empty2.o | egrep 'vmsize 0x0[0]+$$' | ${FAIL_IF_EMPTY}
+       ${OTOOL} -lv empty2.o | grep 'filesize 0' | ${FAIL_IF_EMPTY}
+       ${OTOOL} -lv empty2.o | grep 'nsyms 0' | ${FAIL_IF_EMPTY}
+       ${OTOOL} -lv empty2.o | grep 'symoff 0' | ${FAIL_IF_EMPTY}
        ${PASS_IFF} true
        
 clean: