about a question YSI and ' estimated max. usage: unknown, due to recursion'
#1

So I use YSI and I get this message when I compile my GM with -d3

Код:
Pawn compiler 3.2.3664              Copyright © 1997-2006, ITB CompuPhase

Header size:          28744 bytes
Code size:          3070644 bytes
Data size:         26734120 bytes
Stack/heap size:   17039360 bytes; estimated max. usage: unknown, due to recursion
Total requirements:46872868 bytes
[Finished in 40.9s]
I know is not a problem, but I see others that are using YSI and when they compile his GM, they don't receive a message like
Код:
estimated max. usage: unknown, due to recursion
Any ideas how they did it or how they solved his problem?
Reply
#2

This is an optimization issue.
You will have to optimize your gamemode.
Adding this:
Код:
#pragma dynamic 27452508
Will hide, NOT solve the warning. Using the code above will simply increase the stack but will NOT optimize anything.
Reply
#3

Quote:
Originally Posted by RedGun2015
Посмотреть сообщение
how they solved his problem?
Quote:
Originally Posted by RedGun2015
Посмотреть сообщение
I know is not a problem
Recursion occurs when a function calls itself. For example:

Код:
Func()
{
    Func();
}
Reply
#4

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
Recursion occurs when a function calls itself. For example:

Код:
Func()
{
    Func();
}
Yea, I know that, but I deleted everything and left only the YSI includes, and still happend. I have seen others, using YSI and have no problem, they don't receive the message..
Reply
#5

Fixed. I changed the compilator and now this message doesn't show again .
Reply
#6

Quote:
Originally Posted by RedGun2015
Посмотреть сообщение
Fixed. I changed the compilator and now this message doesn't show again .
Quote:
Originally Posted by ******
Посмотреть сообщение
This isn't a problem, its just an information message.
....
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)