X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/9d2e0767a8f401be0067937f63a08b1c4f79297d..a645023da60d22e86be13f7b4d97adeff8bc6665:/unit-tests/test-cases/stabs-coalesce/Makefile

diff --git a/unit-tests/test-cases/stabs-coalesce/Makefile b/unit-tests/test-cases/stabs-coalesce/Makefile
old mode 100755
new mode 100644
index 6e11c59..806f406
--- a/unit-tests/test-cases/stabs-coalesce/Makefile
+++ b/unit-tests/test-cases/stabs-coalesce/Makefile
@@ -34,18 +34,18 @@ include ${TESTROOT}/include/common.makefile
 run: all
 
 all: hello.o other.o 
-	${CXX} ${CCXXFLAGS} -gstabs+ -gused hello.o other.o -o stabs-hello-${ARCH}
+	g++-4.2 ${CCXXFLAGS} -gstabs+ -gused hello.o other.o -o stabs-hello-${ARCH}
 	${FAIL_IF_BAD_MACHO} stabs-hello-${ARCH}
 	nm -ap stabs-hello-${ARCH} | grep FUN | grep _Z3fooi | wc -l > stabs-hello-foo-count
 	echo "       1" > one
 	${PASS_IFF} diff stabs-hello-foo-count one
 
 hello.o : hello.cxx
-	${CXX} ${CCXXFLAGS} -gstabs+ -gused hello.cxx -c -o $@
+	g++-4.2 ${CCXXFLAGS} -gstabs+ -gused hello.cxx -c -o $@
 	${FAIL_IF_BAD_OBJ} $@
 
 other.o : other.cxx
-	${CXX} ${CCXXFLAGS} -gstabs+ -gused other.cxx -c -o $@
+	g++-4.2 ${CCXXFLAGS} -gstabs+ -gused other.cxx -c -o $@
 	${FAIL_IF_BAD_OBJ} $@
 
 clean: