]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/lto-dead_strip-unused/Makefile
ld64-128.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-dead_strip-unused / Makefile
index a518d82ca5440488a5f97c16435cdec9f157c413..82192f8d4daa7a86960e3458e858db8cc4253234 100644 (file)
@@ -1,5 +1,5 @@
 ##
 ##
-# Copyright (c) 2010 Apple Inc. All rights reserved.
+# Copyright (c) 2010-2011 Apple Inc. All rights reserved.
 #
 # @APPLE_LICENSE_HEADER_START@
 # 
 #
 # @APPLE_LICENSE_HEADER_START@
 # 
 TESTROOT = ../..
 include ${TESTROOT}/include/common.makefile
 
 TESTROOT = ../..
 include ${TESTROOT}/include/common.makefile
 
+
 #
 # <rdar://problem/7438246> LTO with 'dead code strip' can't ignore unused functions with undefined references
 #
 # <rdar://problem/7438246> LTO with 'dead code strip' can't ignore unused functions with undefined references
+# <rdar://problem/10052396> LTO many have eliminated need for some undefines
 #
 
 #
 
-LLVMGCC = /Developer/usr/bin/llvm-gcc-4.2 -arch ${ARCH}
-LLVMGXX = /Developer/usr/bin/llvm-g++-4.2 -arch ${ARCH}
-
 run: all
 
 all:
 run: all
 
 all:
-       ${LLVMGCC} ${CCFLAGS} --emit-llvm bar.c  -c -o bar.o
-       ${LLVMGCC} ${CCFLAGS} --emit-llvm main.c -c -o main.o 
-       ${LLVMGCC} ${CCFLAGS} -dead_strip main.o bar.o -o main
+       ${CC} ${CCFLAGS} -flto bar.c  -c -o bar.o
+       ${CC} ${CCFLAGS} -flto main.c -c -o main.o 
+       ${CC} ${CCFLAGS} main.o bar.o -o main
+       ${CC} ${CCFLAGS} main.o bar.o -o main -dead_strip 
        ${PASS_IFF_GOOD_MACHO} main
        
 clean:
        ${PASS_IFF_GOOD_MACHO} main
        
 clean: