Mon Jun 4 20:28:44 2018 UTC ()
Disable RELRO/SANITIZER


(christos)
diff -r1.191 -r1.192 src/sys/arch/i386/conf/Makefile.i386

cvs diff -r1.191 -r1.192 src/sys/arch/i386/conf/Makefile.i386 (expand / switch to unified diff)

--- src/sys/arch/i386/conf/Makefile.i386 2018/04/18 10:40:22 1.191
+++ src/sys/arch/i386/conf/Makefile.i386 2018/06/04 20:28:44 1.192
@@ -1,32 +1,34 @@ @@ -1,32 +1,34 @@
1# $NetBSD: Makefile.i386,v 1.191 2018/04/18 10:40:22 martin Exp $ 1# $NetBSD: Makefile.i386,v 1.192 2018/06/04 20:28:44 christos Exp $
2 2
3# Makefile for NetBSD 3# Makefile for NetBSD
4# 4#
5# This makefile is constructed from a machine description: 5# This makefile is constructed from a machine description:
6# config machineid 6# config machineid
7# Most changes should be made in the machine description 7# Most changes should be made in the machine description
8# /sys/arch/i386/conf/``machineid'' 8# /sys/arch/i386/conf/``machineid''
9# after which you should do 9# after which you should do
10# config machineid 10# config machineid
11# Machine generic makefile changes should be made in 11# Machine generic makefile changes should be made in
12# /sys/arch/i386/conf/Makefile.i386 12# /sys/arch/i386/conf/Makefile.i386
13# after which config should be rerun for all machines of that type. 13# after which config should be rerun for all machines of that type.
14# 14#
15# To specify debugging, add the config line: makeoptions DEBUG="-g" 15# To specify debugging, add the config line: makeoptions DEBUG="-g"
16# A better way is to specify -g only for a few files. 16# A better way is to specify -g only for a few files.
17# 17#
18# makeoptions DEBUGLIST="uvm* trap if_*" 18# makeoptions DEBUGLIST="uvm* trap if_*"
19 19
 20NOSANITIZER= # defined
 21NORELRO= # defined
20MACHINE_ARCH= i386 22MACHINE_ARCH= i386
21USETOOLS?= no 23USETOOLS?= no
22NEED_OWN_INSTALL_TARGET?=no 24NEED_OWN_INSTALL_TARGET?=no
23.include <bsd.own.mk> 25.include <bsd.own.mk>
24 26
25USE_SSP?= yes 27USE_SSP?= yes
26 28
27## 29##
28## (1) port identification 30## (1) port identification
29## 31##
30I386= $S/arch/i386 32I386= $S/arch/i386
31GENASSYM_CONF= ${I386}/i386/genassym.cf 33GENASSYM_CONF= ${I386}/i386/genassym.cf
32 34