 Question: Compiler
version 1.10
using options: -g -s -o2 -on2 -fr -ff
getting the following errors in code generation phase: "compiler error/packet
error 8" "decomposition error"
Answer: The cause is an overflow
of an internal buffer that the code generator keeps for comments that get written
out to the assembly file. This overflow was caused by a long C statement that got echoed
to the assembly file as a result of using "-s" option on the compile. The
workaround is to compile WITHOUT the -s option. If you need to
keep the assembly file, you can compile with the "-k" option. |