Compiler
#5

you maybe got some long, or deep nested routines like
Code:
switch(condition)
{
case 0:{}
case 1:{}
case 2:{}
//...
case 30:{}
}
or the same with if/else if statements.
functions calling other functions a lot, cause the stack growing up - this data to "return to", needs to be stored in a return-table.
you can avoid warnings about a too large heap/stack size by using the -S parameter in the pawn compiler command line. mostly, the compiler options are looking
Code:
-r
only. add that -S16384 so the line changes to
Code:
-r -S16384
and see if you still get that warning.
Reply


Messages In This Thread
Compiler - by omer5198 - 30.09.2011, 18:32
Re: Compiler - by Kingunit - 30.09.2011, 18:36
Re: Compiler - by [MWR]Blood - 30.09.2011, 18:39
Re: Compiler - by Double-O-Seven - 30.09.2011, 18:40
Re: Compiler - by Babul - 30.09.2011, 19:07
Re: Compiler - by sleepysnowflake - 30.09.2011, 19:16

Forum Jump:


Users browsing this thread: 2 Guest(s)