From: Brett Gordon Date: Thu, 17 Mar 2016 21:46:12 +0000 (-0400) Subject: advent: compile with optimizations off for gcc6809 :( X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=73d77b6f19294f2c1dc388342a331691b5f4610f;p=FUZIX.git advent: compile with optimizations off for gcc6809 :( --- 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