From 9eda71d78ed4c1dc2e86f07a3be7452d307a218f Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Thu, 11 Sep 2014 19:48:15 -0700 Subject: Don't assume null pointers can't be dereferenced This option breaks vm_init's access to word 0 to obtain the memory capacity. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index ceeae8d..be38182 100755 --- a/configure +++ b/configure @@ -3951,7 +3951,7 @@ fi # Default compiler flags #------------------------------------------------------------------------- -CFLAGS="-Wall -Os -std=gnu99 -Wno-unused -Wno-attributes" +CFLAGS="-Wall -Os -std=gnu99 -Wno-unused -Wno-attributes -fno-delete-null-pointer-checks" LIBS="-lc -lgcc" -- cgit v1.1