From 73d77b6f19294f2c1dc388342a331691b5f4610f Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Thu, 17 Mar 2016 17:46:12 -0400 Subject: [PATCH] advent: compile with optimizations off for gcc6809 :( --- Applications/cave/Makefile.6809 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Applications/cave/Makefile.6809 b/Applications/cave/Makefile.6809 index 62c708f0..22876241 100644 --- a/Applications/cave/Makefile.6809 +++ b/Applications/cave/Makefile.6809 @@ -5,7 +5,8 @@ PLATFORM = 6809 CC = m6809-unknown-gcc -CCOPTS = -O2 +# pointer to pointer gcc compilation problems: use -O0. +CCOPTS = -O0 # These are wrappers for lwasm and lwar ASM = m6809-unknown-as AR = m6809-unknown-ar -- 2.34.1