X-Git-Url: https://git.saurik.com/apple/dyld.git/blobdiff_plain/0959b6d4289bd106fddb7fe7d84a346159895fdd..412ebb8e3cc35d457058c31310d89ef96b7c416d:/unit-tests/test-cases/dyld-slide/Makefile diff --git a/unit-tests/test-cases/dyld-slide/Makefile b/unit-tests/test-cases/dyld-slide/Makefile index 35f422d..aa3debf 100644 --- a/unit-tests/test-cases/dyld-slide/Makefile +++ b/unit-tests/test-cases/dyld-slide/Makefile @@ -1,5 +1,5 @@ ## -# Copyright (c) 2005 Apple Computer, Inc. All rights reserved. +# Copyright (c) 2005-2009 Apple Inc. All rights reserved. # # @APPLE_LICENSE_HEADER_START@ # @@ -23,11 +23,35 @@ TESTROOT = ../.. include ${TESTROOT}/include/common.makefile -run: all +STACK_BASE = 0x8fe01000 +STACK_SIZE = 0x00100000 + +ifeq "armv6" "$(ARCH)" + STACK_BASE = 0x2fe01000 + STACK_SIZE = 0x00100000 +endif +ifeq "armv7" "$(ARCH)" + STACK_BASE = 0x2fe01000 + STACK_SIZE = 0x00100000 +endif +ifeq "ppc64" "$(ARCH)" + STACK_BASE = 0x7fff5ff00000 + STACK_SIZE = 0x00400000 +endif +ifeq "x86_64" "$(ARCH)" + STACK_BASE = 0x7fff5ff00000 + STACK_SIZE = 0x00400000 +endif + + + +all-check: all check + +check: ${TESTROOT}/bin/exit-zero-pass.pl "dyld did slide" "dyld did not slide" ./main all: - ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c + ${CC} ${CCFLAGS} -Wno-deprecated-declarations -I${TESTROOT}/include -o main main.c -Wl,-stack_addr,${STACK_BASE} -Wl,-stack_size,${STACK_SIZE} clean: ${RM} ${RMFLAGS} main