Sublime Text 2 Users
#1

Hello Guys, It's my 3rd day using Sublime Text 2 Everytime I compile in it, it shows me Stack Heap size and stuff which indicates that I do have string that its value is big, but when I use Pawno the compiler does not show Stack Heapsize etc.. and I'm starting to get confused.

Sublime Text 2 Compile
Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase

Header size:           8276 bytes
Code size:           277436 bytes
Data size:         17288576 bytes
Stack/heap size:      16384 bytes; estimated max. usage: unknown, due to recursion
Total requirements:17590672 bytes
[Finished in 8.2s]
Pawno Compile
Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
My Custom Build System
Код:
{
	"cmd": ["pawncc.exe", "-d3 -r -i includes", "$file", "-;+"],
	"path": "C:\\Users\\Computer Name\\Desktop\\Script Name\\pawno"
}
Reply
#2

It does show it by default I think, 'cause as far as I remember it has shown it to me too when compiling a little script when I tried around with pawn stuff in it.

Sublime is simply awesome.
Reply
#3

Quote:
Originally Posted by saiberfun
Посмотреть сообщение
It does show it by default I think, 'cause as far as I remember it has shown it to me too when compiling a little script when I tried around with pawn stuff in it.

Sublime is simply awesome.
Alright, Thanks for the information, it made me less worried, Anyone Feel free to reply if you know something about this.
Reply
#4

Here is the problem
Код:
{
	"cmd": ["pawncc.exe", "-d3 -r -i includes", "$file", "-;+"],
	"path": "C:\\Users\\Computer Name\\Desktop\\Script Name\\pawno"
}
d3 flag - Displays extra information about the script
If you remove -d3 part extra information will be not displayed. Like in PAWNO Editor
Reply
#5

Quote:
Originally Posted by QuaTTrO
Посмотреть сообщение
Here is the problem
Код:
{
	"cmd": ["pawncc.exe", "-d3 -r -i includes", "$file", "-;+"],
	"path": "C:\\Users\\Computer Name\\Desktop\\Script Name\\pawno"
}
d3 flag - Displays extra information about the script
If you remove -d3 part extra information will be not displayed. Like in PAWNO Editor
I do have -d3 using Pawno Editor and heap size doesn't show.

Edit
This code fixed the problem

Код:
{
	"cmd": ["pawncc.exe", "-w -v -d3 -r -i 203 includes", "$file", "-;+"],
	"path": "C:\\Users\\Computer Name\\Desktop\\Script Folder Name\\pawno"
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)