Sublime Text 2 Users - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Other (
https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (
https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Sublime Text 2 Users (
/showthread.php?tid=470709)
Sublime Text 2 Users - Patrick - 19.10.2013
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"
}
Re: Sublime Text 2 Users -
saiberfun - 19.10.2013
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.
Re: Sublime Text 2 Users - Patrick - 19.10.2013
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.
Re: Sublime Text 2 Users -
QuaTTrO - 19.10.2013
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
Re: Sublime Text 2 Users - Patrick - 19.10.2013
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"
}