lanceboyle@qwest.net wrote:
I'm getting the following warning when compiling a main program on OS X using the Xcode kit. The whole project includes a number of units too. This reminds me of the days when I would have to make more pointers to arrays and the like and/or increase the stack size in other Mac Pascals. Is there something that I can do to make the messages go away? Is this affecting debugging?
warning: frame size too large for reliable stack checking warning: try reducing the number of local variables
In your Xcode project window, double-click the Debug Target and then edit the Build Settings pane to set
GPC_CHECK_STACK = --pascal=--stack-checking
to
GPC_CHECK_STACK = --pascal=--no-stack-checking
Unless you are doing strange things, the default stack size should normally be sufficient.
Regards,
Adriaan van Os