]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/absolute-symbol/Makefile
ld64-127.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / absolute-symbol / Makefile
index 065b6f37ee5b98db5fa878bce5f5c797c5d51f77..bbdfd1150e413f8b8bfc6bc9a3c99e4e5e914c80 100644 (file)
@@ -30,10 +30,10 @@ include ${TESTROOT}/include/common.makefile
 all:
        ${CC} ${CCFLAGS} main.c -static -c
        ${CC} ${CCFLAGS} abs.s -static -c
-       ${LD} -arch ${ARCH} -static main.o abs.o -e _main -o main
-       ${LD} -arch ${ARCH} -static -r main.o abs.o -o all.o
+       ${LD} -arch ${ARCH} -static main.o abs.o -e _main -o main -new_linker -macosx_version_min 10.6
+       ${LD} -arch ${ARCH} -static -r main.o abs.o -o all.o -new_linker 
        nm -m all.o | grep _myAbs | grep absolute | ${FAIL_IF_EMPTY}
-       ${LD} -arch ${ARCH} -static all.o -e _main -o main2
+       ${LD} -arch ${ARCH} -static all.o -e _main -o main2 -new_linker -macosx_version_min 10.6
        ${PASS_IFF_GOOD_MACHO} main2
        
 clean: