diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-11-21 19:19:14 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-11-21 19:19:14 +0000 |
commit | b23425fac9bbf452722c52a20c4494ae4136430e (patch) | |
tree | 5c71a366fafb21d68e3d7e236d4db1942b77a2e7 | |
parent | 95f54ec48435c8d368d9246adfe8f38accabf6a3 (diff) |
revert -fpie for now, it produces crashing executables
-rw-r--r-- | lib/csu/powerpc/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/csu/powerpc/Makefile b/lib/csu/powerpc/Makefile index b51c75a3c7e..d1ff5d85084 100644 --- a/lib/csu/powerpc/Makefile +++ b/lib/csu/powerpc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2008/11/13 08:18:10 jsg Exp $ +# $OpenBSD: Makefile,v 1.18 2008/11/21 19:19:13 otto Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/1/93 CFLAGS+= -DLIBC_SCCS @@ -14,8 +14,8 @@ CFLAGS+= -I${ELFDIR} -I${.CURDIR} all: ${OBJS} crt0.o: crt0.c - @echo ${COMPILE.c} -DCRT0 -fpie ${.CURDIR}/crt0.c -o ${.TARGET} - @${COMPILE.c} -DCRT0 -fpie ${.CURDIR}/crt0.c -o ${.TARGET}.o + @echo ${COMPILE.c} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET} + @${COMPILE.c} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}.o @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o @@ -26,8 +26,8 @@ gcrt0.o: crt0.c @rm -f ${.TARGET}.o crtbegin.o: crtbegin.c - @echo ${COMPILE.c} -fpie ${ELFDIR}/crtbegin.c -o ${.TARGET} - @${COMPILE.c} -fpie ${ELFDIR}/crtbegin.c -o ${.TARGET}.o + @echo ${COMPILE.c} ${ELFDIR}/crtbegin.c -o ${.TARGET} + @${COMPILE.c} ${ELFDIR}/crtbegin.c -o ${.TARGET}.o @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o @@ -38,8 +38,8 @@ crtbeginS.o: crtbeginS.c @rm -f ${.TARGET}.o crtend.o: crtend.c - @echo ${COMPILE.c} -fpie ${ELFDIR}/crtend.c -o ${.TARGET} - @${COMPILE.c} -fpie ${ELFDIR}/crtend.c -o ${.TARGET}.o + @echo ${COMPILE.c} ${ELFDIR}/crtend.c -o ${.TARGET} + @${COMPILE.c} ${ELFDIR}/crtend.c -o ${.TARGET}.o @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o |