]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/pie-text-reloc/Makefile
dyld-353.2.1.tar.gz
[apple/dyld.git] / unit-tests / test-cases / pie-text-reloc / Makefile
index 497174e9994d34966cfba09dfd1462e4f57817b7..31d75d6b20e4c3809f4ab1e85793c2f35331bf9b 100644 (file)
@@ -1,5 +1,5 @@
 ##
-# Copyright (c) 2007-2008 Apple Inc. All rights reserved.
+# Copyright (c) 2007-2009 Apple Inc. All rights reserved.
 #
 # @APPLE_LICENSE_HEADER_START@
 # 
@@ -29,6 +29,10 @@ ifeq "x86_64" "$(ARCH)"
        EXTRA_OPTIONS = 
 endif
 
+ifeq "iPhoneOS" "$(OS_NAME)"
+       EXTRA_OPTIONS = 
+endif
+
 
 # run a PIE four times and verify its load address was different every time
 
@@ -41,15 +45,15 @@ check:
        ./main >> main.out
        if [ `sort main.out -u | wc -l` == 4 ]; \
        then \
-               echo "PASS pie-basic"; \
+               echo "PASS pie-text-reloc"; \
        else \
-               echo "FAIL pie-basic"; \
+               echo "FAIL pie-text-reloc"; \
        fi; \
         
 all: main
 
 main : main.c
-       ${CC} ${CCFLAGS} -I${TESTROOT}/include -Wl,-pie  $(EXTRA_OPTIONS) -o main main.c -mmacosx-version-min=10.5
+       ${CC} ${CCFLAGS} -I${TESTROOT}/include -Wl,-pie  $(EXTRA_OPTIONS) -o main main.c 
 
 
 clean: