diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2009-10-18 02:47:28 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2009-10-18 02:47:28 +0000 |
commit | 043c5b85a14146436fe3010fa98dab1422a12c40 (patch) | |
tree | 9a78d119f4b0986863218fb2dce23c2a96222a2e /gnu/usr.bin | |
parent | 1fbccfe81e13647ecb1d6550c7ace30273dbd31f (diff) |
Replace mmap/default precompiled header support using a brk/sbrk
implementation since random mmap breaks the default approach.
Note that gcc may not be compiled with PIE support or it will
break this implementation too.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cc/cc_int/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index eb134df7bb1..af57bb55d7b 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -1,12 +1,12 @@ # $FreeBSD: src/gnu/usr.bin/cc/cc_int/Makefile,v 1.52.8.1 2009/04/15 03:14:26 kensmith Exp $ -# $OpenBSD: Makefile,v 1.1 2009/10/15 20:50:20 robert Exp $ +# $OpenBSD: Makefile,v 1.2 2009/10/18 02:47:27 kurt Exp $ .include <bsd.own.mk> .include "${.CURDIR}/../Makefile.inc" .include "${.CURDIR}/../Makefile.ver" -.PATH: ../cc_tools ${GCCDIR} ${GCCDIR}/config/${GCC_CPU} +.PATH: ../cc_tools ${GCCDIR} ${GCCDIR}/config ${GCCDIR}/config/${GCC_CPU} LIB= backend NOPROFILE= Yes @@ -14,7 +14,7 @@ NOPIC= Yes EXTRA_OBJS= GGC= ggc-page.o -host_hook_obj= host-default.o +host_hook_obj= host-openbsd.o # # Most lists copied verbatim from GCC Makefiles. |